28 Jul
2011
28 Jul
'11
11:31 a.m.
On 28/07/11 16:12, Garber, Neal wrote:
I’m running FR 2.1.6 (I know - I plan to upgrade later this year). Is there anything wrong syntactically with the following code or is this a bug that was fixed since 2.1.6? if (Client-IP-Address == "172.20.16.28" || Client-IP-Address == "172.20.204.10")) { update request { Huntgroup-Name := "GlobalRoaming" }
Try: if ((Client-IP-Address == x) || (Client-IP-Address == y)) { }
} # # If NAS is an autonomous AP, get SSID from Cisco-AVPair # if (Huntgroup-Name == "EEProdAP" || \ Huntgroup-Name == "EETestAP") {
Again; group the sub-conditions.