Beberapa kali saya coba test untuk testing snmp agent di Ubuntu, tetapi ketika dijalankan snmpwalk -c public -v1 localhost.....hasilnya selalu Timeout: No Response from localhost.
Akhirnya dapat pencerahan yaitu di file /etc/snmp/snmpd.conf ada direktif yang harus dirubah di
# Listen for connections from the local system only
agentAddress udp:127.0.0.1:161
menjadi
agentAddress udp:0.0.0.1:161
dan di file /etc/default/snmp pastikan berisi
# snmpd options (use syslog, close stdin/out/err).
SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -g snmp -I -smux -p /var/run/snmpd.pid'
Jalankan test :
Dari PC sendiri
snmpwalk -c public -v1 localhost
Dari PC lain
Akhirnya dapat pencerahan yaitu di file /etc/snmp/snmpd.conf ada direktif yang harus dirubah di
# Listen for connections from the local system only
agentAddress udp:127.0.0.1:161
menjadi
dan di file /etc/default/snmp pastikan berisi
# snmpd options (use syslog, close stdin/out/err).
SNMPDOPTS='-Lsd -Lf /dev/null -u snmp -g snmp -I -smux -p /var/run/snmpd.pid'
Jalankan test :
Dari PC sendiri
snmpwalk -c public -v1 localhost
Dari PC lain
snmpwalk -c public -v1 192.168.0.10