To configure snmp on your Proxmox hypervisor, you first need to install the snmpd package with the command :
apt-get install snmpd
Then edit the configuration file :
nano /etc/snmp/snmpd.conf
Change the line ( or put it as a comment ) and replace it with :
agentAddress udp:127.0.0.1:161
by
agentAddress udp:0.0.0.0:161
The next step is to configure the SNMP community:
rocommunity read_community default
or rocommunity “ community name ” “ range ip (unique ip ) /subnet mask ”.
rocommunity read_community 10.7.0.14/32
Then restart the SNMP service by typing :
/etc/init.d/snmpd restart