6. Command Reference of RPCM CLI
The return is:
RPCM Commands description:
add radius server <ip> secret <secret> - add radius-server
shared secret can contain
alphanumeric, punctuation,
minimum 8 maximum 128 characters
--port <0-65534> - radius server's UDP port
(1812 by default)
--enabled <yes|no> - is server enabled
(no by default)
--use-vsa-group <yes|no> - use incoming group attribute
--use-vsa-session-timeout <yes|no> - use incoming session
timeout attribute
--priority <1-100> - server usage priority
higher is more priority
Example: add radius server 1.2.3.4 secret mySharedSecret --enabled yes
add radius server 1.2.3.4 secret mySuperSecretShared --port 1812--
Example
: It is creating a server with IP 192.168.1.1 with the keyword
secret mySharedSecret
with priority 1, port 1812, initially allowed for use, --accessList be 10.0.0.0/8; --accessType is rw
and --enabled — no.
add radius server 1.2.3.4 secret mySuperSecretShared --port 1812 --enabled yes
The return is:
Radius server was 192.168.1.1 added
To remove it, you need to specify the name or IP RADIUS server.
Example
: removing the RADIUS server 192.168.1.1.
delete radius server 192.169.1.1
The return is:
Server 192.168.1.1 was deleted
243