9 Sep
2010
9 Sep
'10
2:24 p.m.
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