Other devices may be found in the templates section of the wiki.
This script here can be used to import data (prior 1.4) into the database or (>=1.4) to generate a xml-importfile.
To find the values or exact names of what you would like to monitor:
root@host:~# snmpwalk vpn.openforce.com -v1 -c public|grep -i ifinoctet IF-MIB::ifInOctets.1 = Counter32: 2216 IF-MIB::ifInOctets.2 = Counter32: 2909800100 IF-MIB::ifInOctets.3 = Counter32: 0 IF-MIB::ifInOctets.4 = Counter32: 948093493 IF-MIB::ifInOctets.5 = Counter32: 252207088 IF-MIB::ifInOctets.6 = Counter32: 0 IF-MIB::ifInOctets.7 = Counter32: 0 IF-MIB::ifInOctets.8 = Counter32: 0 IF-MIB::ifInOctets.9 = Counter32: 0 IF-MIB::ifInOctets.10 = Counter32: 0 IF-MIB::ifInOctets.11 = Counter32: 0 IF-MIB::ifInOctets.12 = Counter32: 0 IF-MIB::ifInOctets.13 = Counter32: 0 IF-MIB::ifInOctets.14 = Counter32: 0 IF-MIB::ifInOctets.15 = Counter32: 0 IF-MIB::ifInOctets.16 = Counter32: 0 IF-MIB::ifInOctets.17 = Counter32: 0 IF-MIB::ifInOctets.18 = Counter32: 0 IF-MIB::ifInOctets.19 = Counter32: 0 IF-MIB::ifInOctets.20 = Counter32: 0 IF-MIB::ifInOctets.21 = Counter32: 258005245
To find the OID of the item you want to get:
root@host:~# snmpget -v1 -c public -On vpn.openforce.com ifInOctets.1 .1.3.6.1.2.1.2.2.1.10.1 = Counter32: 2216
Situation:
Solution:
root@linz:~# snmpwalk vpn.openforce.com -v1 -c public|grep -i eth0 IF-MIB::ifDescr.2 = STRING: eth0 HOST-RESOURCES-MIB::hrDeviceDescr.1026 = STRING: network interface eth0 HOST-RESOURCES-MIB::hrSWRunParameters.20742 = STRING: "-q eth0" IF-MIB::ifName.2 = STRING: eth0
snmpwalk vpn.openforce.com -v1 -c public|egrep -i 'if(in|out)'|less
IF-MIB::ifInOctets.1 = Counter32: 2216 IF-MIB::ifInOctets.2 = Counter32: 2916915107 IF-MIB::ifInOctets.3 = Counter32: 0 IF-MIB::ifInOctets.4 = Counter32: 949315672 IF-MIB::ifInOctets.5 = Counter32: 252207088 IF-MIB::ifInOctets.6 = Counter32: 0 IF-MIB::ifInOctets.7 = Counter32: 0 IF-MIB::ifInOctets.8 = Counter32: 0
root@host:~# snmpget -v1 -c public -On vpn.openforce.com ifInOctets.2 .1.3.6.1.2.1.2.2.1.10.2 = Counter32: 2917893876 root@host:~# snmpget -v1 -c public -On vpn.openforce.com ifOutOctets.2 .1.3.6.1.2.1.2.2.1.16.2 = Counter32: 735038193