Hi Eirik,
that legacy configuration should translate to
profile
admins {
script {
if (service == shell)
{
if (cmd == "") {
set priv-lvl = 15
permit
}
permit
}
if (service == ppp
&& protocol == ip) {
set F5-LTM-User-Info-1 = adm
set F5-LTM-User-Console = 1
set F5-LTM-User-Role = 0
set F5-LTM-User-Partition = all
permit
}
}
}
(Checking for "service == ppp" would likely sufficient, but checking for "protocol == ip" doesn't hurt.)
Cheers,
Marc
--
You received this message because you are subscribed to the Google Groups "Event-Driven Servers" group.
To unsubscribe from this group and stop receiving emails from it, send an email to event-driven-ser...@googlegroups.com.
To view this discussion visit https://groups.google.com/d/msgid/event-driven-servers/64c10467-9160-47f2-a904-626bb507795cn%40googlegroups.com.
Hi Eirik,
thanks, the "protocol" keyword wasn't actually handled correctly, bfa870b20579ebd5fa34cedf17f761110d1e6410 does fix that.
Cheers,
Marc