1

Is there any standard list of oid list for all the SNMP enabled devices? I want to retrieve some device information over my network for all the SNMP enabled devices.

I got something like, oid are in MIBs of individual devices. How to get all the oid list by which I can know what are the information that I can get by SNMP.

Dave M
  • 4,514
  • 22
  • 31
  • 30
pradiptart
  • 215
  • 1
  • 3
  • 9

1 Answers1

1

What you want is called discovery in the network monitoring world. The high-level approach to this is to usually ping your entire IP network graph using ICMP or TCP pings and on a response, do an SNMP get of a standard RTF OID, like sysname. You SNMP get a standard RTF OID because those are usually implemented by default on most systems.

  1. ICMP Ping entire network elements
  2. On response, do an SNMP Ping
  3. On response, log the IP address as SNMP discovered
EhevuTov
  • 474
  • 3
  • 10