Server configuration for RADIUS and other servers
servers
One protocol and port per server supported. Each server clause must be configured with a string that represents its name.
Example configuration of a servers clause with two simple RADIUS server configurations:
servers {
radius "server-radius-auth-udp-1812" {
capture "console-capture";
listen {...}
# Allow connections/requests from clients in a client list "clients-radius-all"
clients "clients-radius-all";
# (Optional) Handle all requests by AAA policy named "auth"
#policy "auth";
}
radius "server-radius-acct-udp-1813" {
listen {...}
# Allow connections/requests from clients in a client list "clients-radius-all"
clients "clients-radius-all";
}
}