Hey Guys I'm looking to do some automatic authentication so I can trigger the Authen status on some WiFi MAC-TAL services... I was wondering if I did something like: authenticate { if (User-Name =~ /^192.168.200.+/) { Whether it would be possible to send a access-accept back and how to configure? In this scenario the WiFi Gateway sends a Authen request to the RADIUS server with the DHCP assigned IP address as the user-name I just want to automatically say authenticated and return a couple of quote attributes for any client matching the subnet Darren
Hi darrward, Check users file . You can achieve this with DEFAULT entry. Regards Vijay A. On Apr 10, 2015 11:26 AM, "Darren Ward (darrward)" <darrward@cisco.com> wrote:
Hey Guys
I'm looking to do some automatic authentication so I can trigger the Authen status on some WiFi MAC-TAL services...
I was wondering if I did something like:
authenticate {
if (User-Name =~ /^192.168.200.+/) {
Whether it would be possible to send a access-accept back and how to configure?
In this scenario the WiFi Gateway sends a Authen request to the RADIUS server with the DHCP assigned IP address as the user-name
I just want to automatically say authenticated and return a couple of quote attributes for any client matching the subnet
Darren
- List info/subscribe/unsubscribe? See http://www.freeradius.org/list/users.html
Hey Guys
I'm looking to do some automatic authentication so I can trigger the Authen status on some WiFi MAC-TAL services...
authorize { if (User-Name =~ /^192.168.200.+/) { update control { Auth-Type := Accept } } } Arran Cudbard-Bell <a.cudbardb@freeradius.org> FreeRADIUS development team FD31 3077 42EC 7FCD 32FE 5EE2 56CF 27F9 30A8 CAA2
participants (3)
-
Arran Cudbard-Bell -
Darren Ward (darrward) -
Vijay S