zone migration using nomadix with free radius
Hi, I am trying to implement zone migration on nomadix. I have made the desired configuration settings on the nomadix. However when I switch between the SSIDs it does not redirect me to the AAA page. Although I get authenticated on nomadix but the redirection is not working. I have added the authentication qyery on free radius as (/etc/raddb/sites-enabled/default):- if ("%{Called-Station-Id}" =~ /^00-50-E8-/) { update request { Tmp-String-0 = "%{sql: SELECT radius_group_name from raduserzone where \ site_id='%{NAS-Identifier}' and \ mac_address='%{Calling-Station-Id}' and \ vlan_id='%{NAS-Port}'}" } if (&Tmp-String-0 != "") { update request { Tmp-String-1 := "%{sql: update radusergroup set \ groupname='%{Tmp-String-0}' \ where username='%{Calling-Station-Id}'}"; } } else { reject } } raduserzone is a custom table :- mysql> select * from raduserzone ; +----+---------+-------------------+---------+-------------------+ | id | site_id | mac_address | vlan_id | radius_group_name | +----+---------+-------------------+---------+-------------------+ Any ideas/suggestions? Thanks, Amardeep
On Tue, May 03, 2016 at 05:38:15PM +0530, Amardeep Singh wrote:
I am trying to implement zone migration on nomadix. I have made the desired configuration settings on the nomadix. However when I switch between the SSIDs it does not redirect me to the AAA page. Although I get authenticated on nomadix but the redirection is not working.
This is the FreeRADIUS developers list. You should ask on freeradius-users instead. Remember to include debug output (radiusd -X) as well. Matthew -- Matthew Newton, Ph.D. <mcn4@le.ac.uk> Systems Specialist, Infrastructure Services, I.T. Services, University of Leicester, Leicester LE1 7RH, United Kingdom For IT help contact helpdesk extn. 2253, <ithelp@le.ac.uk>
participants (3)
-
Amardeep Singh -
Matthew Newton -
Phil Mayers