Each number in an OID acts like a directional signpost in a massive global library. As you move from left to right, each number gets more specific.
Based on the OID you are using in this lab (1.3.6.1.2.1.1.1.0), here is the breakdown of what every single digit represents:
| Number | Name | Description |
|---|---|---|
| 1 | iso | The Root. Established by the International Organization for Standardization. |
| 3 | org | Sub-group for recognized organizations. |
| 6 | dod | Specifically for the U.S. Department of Defense (who created the early internet). |
| 1 | internet | Defines that we are looking for Internet-related information. |
| 2 | mgmt | The Management branch, used for network monitoring. |
| 1 | mib-2 | Stands for "Management Information Base version 2" (the global standard for device data). |
| 1 | system | The System Group. This tells SNMP we want general info about the device hardware/OS. |
| 1 | sysDescr | The specific Object. In this case, the Text Description of the system. |
| 0 | index | The Instance. .0 means there is only one of these "leaves" on this branch. |
Why these specific numbers?
- 1.3.6.1: You will see this at the start of almost every SNMP query. It’s like the "http://" of the SNMP world; it just gets you into the right neighborhood.
- The "Group" (the 7th digit): This is where it gets interesting.
- If it's a
1, you are looking at System info (Hostname, Uptime). - If it's a
2, you are looking at Interfaces (Ethernet ports, bandwidth). - If it's a
4, you are looking at IP settings.
- If it's a
- The "Object" (the 8th digit): This is the specific data point.
- Under the System group (
.1), the3represents Uptime, which is why you used1.3.6.1.2.1.1.3.0in the second part of your lab task.
- Under the System group (
In summary: Each number is a deeper level of a category. By the time you get to the 8th or 9th digit, you have narrowed down millions of possibilities to one single piece of information, like "System Uptime."