Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Manchmal brauche ich zum Testen von Checkmk eine SNMP-Quelle, also Zugang zu einem SNMP-Daemon. Hier bietet sich das einfache Paket snmpd an, welches folgendermassen z.B. in Ubuntu 20.04 installiert werden kannSometimes you need a snmp source for testing something in checkmk. For this you can use snmp daemon.

Note

This short manual is tested with Ubuntu 20.4 and not supported by Tribe29


Code Block
sudo apt install snmpd

...

Code Block
#agentaddress 127.0.0.1,[::1]

Sicherheitshalber sollte der SNMPD neugestartet werdenRestart the snmp service

Code Block
/etc/init.d/snmpd restart

Zum Testen kann ein SNMP-Walk angefragt werden, sowohl lokal als auch Now you can create a snmpwalk by using snmpbulkwalk.  This will work local as well as remote

Code Block
snmpbulkwalk -v2c -c public mysnmpdtesthost01

...