Manual:SNMP: Difference between revisions

From MikroTik Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
Line 1: Line 1:
Simple Network Management Protocol (SNMP) is an "Internet-standard protocol for managing devices on IP networks.  
Simple Network Management Protocol (SNMP) is an "Internet-standard protocol for managing devices on IP networks.  


RouterOS supports SNMP v1,2 and 3. SNMP write is also supported.  You can download the latest MikroTik [http://mikrotik.com/download/Mikrotik.mib RouterOS MIB] file.
=== Specifications ===
 
RouterOS supports SNMP v1,2 and 3. SNMP write is also supported.   
 
=== Configuration ===


To enable SNMP in RouterOS:
To enable SNMP in RouterOS:
Line 16: Line 20:
</pre>
</pre>


RouterOS v5.x uses such MIBs:
=== Management information base (MIB) ===
 
You can download the latest MikroTik [http://mikrotik.com/download/Mikrotik.mib RouterOS MIB] file. RouterOS v5.x uses such MIBs:


* MIKROTIK-MIB
* MIKROTIK-MIB
Line 31: Line 37:
* UPS-MIB
* UPS-MIB
* SQUID-MIB
* SQUID-MIB
===  Object identifiers (OID)===
Each OID identifies a variable that can be read or set via SNMP. Although the MIB file contains all the needed OID values, you can also print individual OID information in the console with the '''print oid''' command at any menu level:
<pre>
[admin@MikroTik] /interface> print oid
Flags: D - dynamic, X - disabled, R - running, S - slave
0  R  name=.1.3.6.1.2.1.2.2.1.2.1 mtu=.1.3.6.1.2.1.2.2.1.4.1
      mac-address=.1.3.6.1.2.1.2.2.1.6.1 admin-status=.1.3.6.1.2.1.2.2.1.7.1
      oper-status=.1.3.6.1.2.1.2.2.1.8.1 bytes-in=.1.3.6.1.2.1.2.2.1.10.1
      packets-in=.1.3.6.1.2.1.2.2.1.11.1 discards-in=.1.3.6.1.2.1.2.2.1.13.1
      errors-in=.1.3.6.1.2.1.2.2.1.14.1 bytes-out=.1.3.6.1.2.1.2.2.1.16.1
      packets-out=.1.3.6.1.2.1.2.2.1.17.1 discards-out=.1.3.6.1.2.1.2.2.1.19.1
      errors-out=.1.3.6.1.2.1.2.2.1.20.1
</pre>


Other SNMP Documentation
Other SNMP Documentation

Revision as of 07:35, 8 December 2011

Simple Network Management Protocol (SNMP) is an "Internet-standard protocol for managing devices on IP networks.

Specifications

RouterOS supports SNMP v1,2 and 3. SNMP write is also supported.

Configuration

To enable SNMP in RouterOS:

[admin@MikroTik] /snmp> print 
       enabled: no
       contact: 
       location: 
       engine-id: 
       trap-community: (unknown)
       trap-version: 1
[admin@MikroTik] /snmp>  set enabled yes

Management information base (MIB)

You can download the latest MikroTik RouterOS MIB file. RouterOS v5.x uses such MIBs:

  • MIKROTIK-MIB
  • MIB-2
  • HOST-RESOURCES-MIB
  • IF-MIB
  • IP-MIB
  • IP-FORWARD-MIB
  • IPV6-MIB
  • BRIDGE-MIB
  • DHCP-SERVER-MIB
  • CISCO-AAA-SESSION-MIB
  • ENTITY-MIB
  • UPS-MIB
  • SQUID-MIB

Object identifiers (OID)

Each OID identifies a variable that can be read or set via SNMP. Although the MIB file contains all the needed OID values, you can also print individual OID information in the console with the print oid command at any menu level:

[admin@MikroTik] /interface> print oid

Flags: D - dynamic, X - disabled, R - running, S - slave 
 0  R  name=.1.3.6.1.2.1.2.2.1.2.1 mtu=.1.3.6.1.2.1.2.2.1.4.1 
       mac-address=.1.3.6.1.2.1.2.2.1.6.1 admin-status=.1.3.6.1.2.1.2.2.1.7.1 
       oper-status=.1.3.6.1.2.1.2.2.1.8.1 bytes-in=.1.3.6.1.2.1.2.2.1.10.1 
       packets-in=.1.3.6.1.2.1.2.2.1.11.1 discards-in=.1.3.6.1.2.1.2.2.1.13.1 
       errors-in=.1.3.6.1.2.1.2.2.1.14.1 bytes-out=.1.3.6.1.2.1.2.2.1.16.1 
       packets-out=.1.3.6.1.2.1.2.2.1.17.1 discards-out=.1.3.6.1.2.1.2.2.1.19.1 
       errors-out=.1.3.6.1.2.1.2.2.1.20.1 


Other SNMP Documentation