I have snmpd running on an Ubuntu Linux system with a simple /etc/snmp/snmpd.conf:
rocommunity public
snmpd is listening on localhost. From the same system, I am running:
snmpwalk -v 1 -c public localhost
and part of the output is:
iso.3.6.1.2.1.92.1.1.1.0 = Gauge32: 1000
iso.3.6.1.2.1.92.1.1.2.0 = Gauge32: 1440
iso.3.6.1.2.1.92.1.2.1.0 = Counter32: 0
iso.3.6.1.2.1.92.1.2.2.0 = Counter32: 0
As you can see, I am only getting numeric OIDs for all but the iso object. I have also tried snmpwalk with the -Of option and snmptranslate. Both produce the exact same OIDs as above: that is, only numeric for children of iso.
Also, there are no other root level objects besides iso. Is that normal?
Thanks