Resolution | When there is sufficient RSA RADIUS log data in the /opt/rsa/am/radius directory, an administrator can locate the version number of the RADIUS software using the following command:
cat /opt/rsa/am/radius/*.log | grep Version
For example,
rsaadmin@app82p:~> cat /opt/rsa/am/radius/*.log | grep Version 07/17/2017 14:18:40 Version: v1.01.1 07/17/2017 14:23:13 Version: v1.01.1 07/17/2017 14:53:25 Version: v1.01.1
Alternatively stopping and starting the RSA RADIUS server will write the software version into the current RSA RADIUS log file. The output, in part, will include the version. For example:
rsaadmin@app82p:~> /opt/rsa/am/server/rsaserv restart radius Stopping RSA RADIUS Server: */ RSA Database Server [RUNNING] * RSA RADIUS Server [SHUTDOWN] Starting RSA Administration Server with Operations Console: Starting RSA Database Server: RSA Administration Server with Operations Console [RUNNING] Starting RSA RADIUS Server Operations Console: RSA RADIUS Server Operations Console [RUNNING] Starting RSA Runtime Server: * RSA Runtime Server [RUNNING] Starting RSA RADIUS Server: * RSA RADIUS Server [RUNNING] rsaadmin@app82p:~> tail -n 35 /opt/rsa/am/radius/20170811.log 08/11/2017 11:21:23 DCF system shutting down 08/11/2017 11:21:24 DCF system shut down 08/11/2017 11:21:25 Shutting down Radius Authentication Server ... 08/11/2017 11:21:25 Shutting down Radius Accounting Server ... 08/11/2017 11:21:26 Completed server shutdown process 08/11/2017 11:21:28 Version: v1.01.1 . . .
|