I'm trying to setup my dynamic clients and specify a nas-type.<br><br>In my dynamic-clients I have:<br><br>server dynamic_client_server {<br> authorize {<br> FreeRADIUS-Client-Shortname = "Cisco"<br>
FreeRADIUS-Client-NAS-Type = "other"<br>...<br><br>Then in my sites-enabled/default in the authorize section I have:<br><br> update request {<br> # NAS-Vendor is a local custom dict addition<br>
FreeRADIUS-Client-Shortname := "%{Client-Shortname}"<br> FreeRADIUS-Client-NAS-Type := "%{FreeRADIUS-Client-NAS-Type}"<br> }<br><br>To see what my Client-Shortname and NasType are set to using unlang.<br>
<br>But in the debug output I get:<br><br>++[request] returns notfound<br> expand: %{Client-Shortname} -> Cisco<br> expand: %{FreeRADIUS-Client-NAS-Type} -><br>++[request] returns notfound<br><br>What field should I be trying to lookup to find out what value I set my NAS-Type to in Dynamic Clients while in the Authorize section in my default??<br>
<br>And as per the docs: <a href="http://wiki.freeradius.org/Clients.conf">http://wiki.freeradius.org/Clients.conf</a><br><br>Are the list of permitted nastypes valid, or can I use any string and do further checks for it later?<br>