How to find the Device Identifier (sysOID) using MIB browser?

How to find the Device Identifier (sysOID) using MIB browser?

The managed objects in an MIB are called object identifiers (object IDs or OIDs). OIDs are identifiable by strings of numbers separated by dots.
You can find the sysOID using the MIB browser.
  1. Open the Command Prompt as an administrator
  2. Go to the directory where the On-Premise Poller is installed
  3. Then navigate to Network Plus\bin folder
  4. Start the MibBrowser.sh/MibBrowser.bat file in the Network Plus\bin folder
  5. As the MibBrowser opens up, set the SNMP credentials with respect to the version.
    • For SNMP v1, set the host, port, and the SNMP community
    • For SNMP v2, click Edit > Settings > Change the SNMP version to v2 > Click Ok. Set the host, port, and the SNMP community
    • For SNMP v3, click Edit > Settings > Change the SNMP version to v3 > Click Add. Set the host, port, user name, authentication credentials and click ok

  6. In the MibBrowser screen, look out for RFC 1213-MIB in the left end
  7. Navigate to org > dod > internet > mgmt > mib-2 > system by clicking on it
  8. Select sysOID from the list
  9. Now click on the "Get SNMP variable" icon (located 7th from the left, below the menu bar)
The sysOID displayed on the screen is .iso.org.dod.internet.private.enterprises.9.1.283 and this can also be written
as .1.3.6.1.4.1.9.1.283 
If the MIB browser throws an error, refer here to identify the issue.
Alternative steps:
If the MIB browser is inaccessible or fails to work, SNMP command line tools can be used to find the sysOID.

Install the required packages:
Fedora/Centos: yum install net-snmp-utils
Ubuntu: apt-get install snmp

> snmpget -v [1/2c/3] -c Read_Community IP_Address .1.3.6.1.2.1.1.2.0
Ex: snmpget -v 2c -c public 10.10.10.1 .1.3.6.1.2.1.1.2.0

Note: If the SNMP port is not default, use it like IP_Address:Port
Ex: 10.10.10.1:601


Related article:

    • Related Articles

    • Site24x7 Real User Monitoring (RUM) - Data Collection

      When you include Site24x7 RUM beacon script in your web pages, the following data is collected. All data that's being collected is in accordance with GDPR compliance. Performance details of web page load time - Metrics like response time of web page ...
    • How to configure the NGINX status page for monitoring NGINX performance

      The NGINX plugin uses the NGINX status page to pull the performance metrics of the NGINX server. You may encounter the following errors while installing the NGINX plugin integration: Error_code : HTTP Error 404: This error usually indicates that the ...
    • Validating sender email using DKIM authentication

      What is DKIM? DomainKeys Identified Mail (DKIM) is an advanced authentication method used widely by email service providers to verify the email from the point of its origin by validating the email sender. It allows the email senders to authenticate ...
    • Troubleshoot the Error 404 and Error 99 for RabbitMQ

      When installing the RabbitMQ plugin, you may encounter the following errors: HTTP Error 404: Not Found: This error usually occurs when Site24x7's RabbitMQ monitoring plugin attempts to access the /api/overview page of RabbitMQ, but the resource ...
    • Troubleshoot the "pymysql module not found" error when installing the MySQL plugin

      If you're encountering the pymysql module not found error, it likely means that the pymysql Python library is not installed on the server. pymysql is a Python package that provides a way to interact with MySQL databases using Python code and is used ...