22 Jun
2020
22 Jun
'20
7:29 a.m.
On Jun 22, 2020, at 12:07 AM, Olivier CALVANO <o.calvano@gmail.com> wrote:
Exemple of my config entry:
if ((Tunnel-Server-Endpoint:0[0] != '192.168.1.96') && (User-Name =~ /\\.internal-lan\\.ftth/) && ("%{Packet-Src-IP-Address}" == "192.168.90.58")) {
You should just use: if ((Tunnel-Server-Endpoint:0[0] != 192.168.1.96) && (User-Name =~ /\\.internal-lan\\.ftth/) && (Packet-Src-IP-Address == 192.168.90.58)) {
they are a synthaxe change in FreeRadius 3.x ?
v3 is more picky about what it accepts. Alan DeKok.