NET-SNMP-EXAMPLES-MIB: View SNMP OID List / Download MIB

VENDOR: NET-SNMP


 Home MIB: NET-SNMP-EXAMPLES-MIB
Download as:   

Download standard MIB format if you are planning to load a MIB file into some system (OS, Zabbix, PRTG ...) or view it with a MIB browser. CSV is more suitable for analyzing and viewing OID' and other MIB objects in excel. JSON and YAML formats are usually used in programing even though some systems can use MIB in YAML format (like Logstash).
Keep in mind that standard MIB files can be successfully loaded by systems and programs only if all the required MIB's from the "Imports" section are already loaded.
The tree-like SNMP object navigator requires no explanations because it is very simple to use. And if you stumbled on this MIB from Google note that you can always go back to the home page if you need to perform another MIB or OID lookup.


Object Name OID Type Access Info
 netSnmpExamples 1.3.6.1.4.1.8072.2
Example MIB objects for agent module example implementations
     netSnmpExampleScalars 1.3.6.1.4.1.8072.2.1
         netSnmpExampleInteger 1.3.6.1.4.1.8072.2.1.1 integer32 read-write
This is a simple object which merely houses a writable integer. It's only purposes is to hold the value of a single integer. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/scalar_int.c file.
         netSnmpExampleSleeper 1.3.6.1.4.1.8072.2.1.2 integer32 read-write
This is a simple object which is a basic integer. It's value indicates the number of seconds that the agent will take in responding to requests of this object. This is implemented in a way which will allow the agent to keep responding to other requests while access to this object is blocked. It is writable, and changing it's value will change the amount of time the agent will effectively wait for before returning a response when this object is manipulated. Note that SET requests through this object will take longer, since the delay is applied to each internal transaction phase, which could result in delays of up to 4 times the value of this object. This example object is implemented in the agent/mibgroup/examples/delayed_instance.c file.
         netSnmpExampleString 1.3.6.1.4.1.8072.2.1.3 snmpadminstring read-write
This is a simple object which merely houses a writable string. It's only purposes is to hold the value of a single string. Writing to it will simply change the value for subsequent GET/GETNEXT/GETBULK retrievals. This example object is implemented in the agent/mibgroup/examples/watched.c file.
     netSnmpExampleTables 1.3.6.1.4.1.8072.2.2
         netSnmpIETFWGTable 1.3.6.1.4.1.8072.2.2.1 no-access
This table merely contains a set of data which is otherwise useless for true network management. It is a table which describes properies about a IETF Working Group, such as the names of the two working group chairs. This example table is implemented in the agent/mibgroup/examples/data_set.c file.
             netSnmpIETFWGEntry 1.3.6.1.4.1.8072.2.2.1.1 no-access
A row describing a given working group
                 nsIETFWGName 1.3.6.1.4.1.8072.2.2.1.1.1 octet string no-access
The name of the IETF Working Group this table describes.
                 nsIETFWGChair1 1.3.6.1.4.1.8072.2.2.1.1.2 octet string read-only
One of the names of the chairs for the IETF working group.
                 nsIETFWGChair2 1.3.6.1.4.1.8072.2.2.1.1.3 octet string read-only
The other name, if one exists, of the chairs for the IETF working group.
         netSnmpHostsTable 1.3.6.1.4.1.8072.2.2.2 no-access
An example table that implements a wrapper around the /etc/hosts file on a machine using the iterator helper API.
             netSnmpHostsEntry 1.3.6.1.4.1.8072.2.2.2.1 no-access
A host name mapped to an ip address
                 netSnmpHostName 1.3.6.1.4.1.8072.2.2.2.1.1 octet string no-access
A host name that exists in the /etc/hosts (unix) file.
                 netSnmpHostAddressType 1.3.6.1.4.1.8072.2.2.2.1.2 inetaddresstype read-only
The address type of then given host.
                 netSnmpHostAddress 1.3.6.1.4.1.8072.2.2.2.1.3 inetaddress read-only
The address of then given host.
                 netSnmpHostStorage 1.3.6.1.4.1.8072.2.2.2.1.4 storagetype read-only
The storage type for this conceptual row.
                 netSnmpHostRowStatus 1.3.6.1.4.1.8072.2.2.2.1.5 rowstatus read-only
The status of this conceptual row.
     netSnmpExampleNotifications 1.3.6.1.4.1.8072.2.3
         netSnmpExampleNotificationPrefix 1.3.6.1.4.1.8072.2.3.0
             netSnmpExampleHeartbeatNotification 1.3.6.1.4.1.8072.2.3.0.1
An example notification, used to illustrate the definition and generation of trap and inform PDUs (including the use of both standard and additional varbinds in the notification payload). This notification will typically be sent every 30 seconds, using the code found in the example module agent/mibgroup/examples/notification.c
         netSnmpExampleNotification 1.3.6.1.4.1.8072.2.3.1 snmpadminstring no-access
This object was improperly defined for its original purpose, and should no longer be used.
         netSnmpExampleNotificationObjects 1.3.6.1.4.1.8072.2.3.2
             netSnmpExampleHeartbeatRate 1.3.6.1.4.1.8072.2.3.2.1 integer32 no-access
A simple integer object, to act as a payload for the netSnmpExampleHeartbeatNotification. The value has no real meaning, but is nominally the interval (in seconds) between successive heartbeat notifications.
             netSnmpExampleHeartbeatName 1.3.6.1.4.1.8072.2.3.2.2 snmpadminstring no-access
A simple string object, to act as an optional payload for the netSnmpExampleHeartbeatNotification. This varbind is not part of the notification definition, so is optional and need not be included in the notification payload. The value has no real meaning, but the romantically inclined may take it to be the object of the sender's affection, and hence the cause of the heart beating faster.