Page 1 of 1

SNMP upgrade to version 3

Posted: Tue Aug 28, 2018 2:49 pm
by bosecorp
Hi Team,

We will be upgrading from SNMPv2 to SNMPv3.
Please let us know the things we need to take care from nagios point.


Thanks!

Re: SNMP upgrade to version 3

Posted: Tue Aug 28, 2018 3:59 pm
by syang
Hi Bosecorp,

I was able to upgrade my Linux machine from SNMPv2 to SNMPv3 without a problem.

Start by creating a backup of the original /etc/smp/snmpd.conf file

Code: Select all

cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.bak
Stop the the SNMP service while adding SNMPv3.

Code: Select all

systemctl stop snmpd.service
Use the following command to create the SNMPv3 user which will be added to the /etc/snmp/snmpd.conf and the /var/lib/net-snmp/snmpd.conf. Replace the necessary passwords, username, and authentication types.

Code: Select all

net-snmp-create-v3-user -ro -a SHA -A Str0ng@uth3ntic@ti0n -x AES -X Str0ngPriv@cy nagios
Then restart the service.

Code: Select all

sudo systemctl start snmpd.service
In the XI GUI, you would have to re-monitor the devices that have been upgraded to SNMPv3.

Re: SNMP upgrade to version 3

Posted: Tue Aug 28, 2018 4:15 pm
by ssax
Thanks syang!

Please see here as well:

https://support.nagios.com/forum/viewto ... 47#p212147

Let us know if you have any specific questions.

Re: SNMP upgrade to version 3

Posted: Thu Sep 20, 2018 9:26 am
by bosecorp
thanks, you can close this ticket