Freeradius capable of url-redirect

Alan Buxey A.L.M.Buxey at lboro.ac.uk
Thu Sep 9 20:24:01 CEST 2010


Hi,
> I have in post-auth:
> 
> If(outer.NAS-IP-Address == x.x.x.x)
> {
> 	Cisco-AVPair += "http:url-redirect=http://www.cisco.com"
> }

huh?  you are checking for a condition and then trying to 'run' that Cisco
attribute..... what you want to do is SET that attribute...eg

if(outer.NAS-IP-Address == x.x.x.x)
 {
	update request {
       	Cisco-AVPair += "http:url-redirect=http://www.cisco.com"
	}
 }


or somesuch.....

alan



More information about the Freeradius-Users mailing list