How to configure CA Identity Suite Vapp 14.2 with SNMPv3.
Release : 14.2
Component : CA IDENTITY SUITE (VIRTUAL APPLIANCE)
You can review the link to Monitoring with SNMP. The commands are similar with SNMP v3
High level summary of the steps:
After the user is created you can issue some similar commands below:
snmpwalk -v 3 localhost -u UserName -l authNoPriv -a MD5 -A passphrase -c public .1.3.6.1.4.1.2021.9
snmpwalk -v 3 localhost -u UserName -l authNoPriv -a MD5 -A passphrase -c public sysName
If you are using FIPS you will need -a SHA and -x AES encryption when creating the user.
https://access.redhat.com/solutions/4233271
create a user with the command.
net-snmp-create-v3-user -a SHA -x AES
after the user is created the services need to be restarted.
service snmpd stop
service snmpd start
You show now be able to issue similar commands below:
snmpwalk -v 3 localhost -u UserName -l authNoPriv -a SHA -x AES -A passphrase -c public .1.3.6.1.4.1.2021.9
snmpwalk -v 3 localhost -u UserName -l authNoPriv -a SHA -x AES -A passphrase -c public sysName
Examples Steps to remove a user:
Get list of current users:
snmpwalk -v 3 localhost -u UserName -l authNoPriv -a SHA -x AES -A passphrase -c public .1.3.6.1.6.3.15.1.2.2.1.3
Another way to get a list of user is to review the last few lines the file: /etc/snmp/snmpd.conf
The last lines should show the users that were previous created. With this user information, you can run the snmpusm that were previously provided to delete the users.
After you get the user name you would like to delete use the command:
snmpusm -v 3 -u UserName -l auth -a SHA -x AES -A passphrase localhost delete UserNameToDelete