What Is SNMP?
What is SNMP, in plain English?
SNMP stands for the Simple Network Management Protocol. It's the standard language that monitoring tools use to talk to network gear — switches, routers, firewalls, printers, access points, and servers. With SNMP, a monitoring system can ask a device questions like "how much traffic is on port 3?", "is this interface up?", or "what's your uptime?" — and get a precise answer back.
The short version: SNMP is how one machine reads the live status of another over the network, without anyone logging in by hand. It's been the backbone of network monitoring for decades because nearly every piece of professional equipment speaks it.
The MIB tree: where the values live
Every value a device can report — port status, temperature, error counts, its own name — is organized into a giant catalog called the MIB (Management Information Base). The MIB is a tree: it starts from a single root and branches downward into ever-more-specific categories, like folders inside folders.
Near the top are broad branches for standards bodies and vendors; further down are specific groups like "system information" or "interface statistics"; at the very tips are individual readable values. Standard MIBs are shared across all vendors, while each manufacturer also publishes its own private MIB branch for hardware-specific details. The tree is what gives every value a fixed, predictable address.
OIDs: a dotted address for every value
Each leaf on the MIB tree has an OID — an Object Identifier — written as a string of numbers separated by dots. The OID is just the path from the root of the tree down to that one value, the same way a file path walks down through folders. A few you'll meet constantly:
sysName→1.3.6.1.2.1.1.5.0— the device's configured name.sysUpTime→1.3.6.1.2.1.1.3.0— how long it's been running.ifOperStatus→1.3.6.1.2.1.2.2.1.8— whether an interface is up or down.ifInOctets/ifOutOctets— bytes received and sent on an interface, the raw material for traffic graphs.
When a monitoring tool wants a value, it sends the device that OID and the device replies with the current reading. The numeric OID is what travels on the wire; the friendly name like ifOperStatus is just a human label that a MIB translates to and from.
Not sure what an OID means?
Paste any dotted OID into Acutis Go's free decoder and get its name, MIB branch, and what it actually reports — no account needed.
Decode any SNMP OID →SNMP versions and security
SNMP comes in three versions, and the difference is mostly about security:
- v1 — the original. Functional but dated, with weak error handling and no real security.
- v2c — the common workhorse. It adds bulk transfers and better data types, but access is still gated only by a community string — essentially a shared password sent in clear text. A read-only community (often "public") lets a tool poll values; a read-write one can change settings.
- v3 — the secure version. It replaces community strings with proper per-user authentication and optional encryption, so credentials and data aren't exposed on the wire. v3 is the right choice anywhere security matters.
Because v2c sends its community string unprotected, it's best kept to trusted internal networks; for anything sensitive, v3 is strongly preferred.
What you can read and poll
Most SNMP monitoring is read-only polling: the tool asks the same OIDs every minute or so and graphs the results over time. Typical things you'll watch include per-port traffic and errors, interface up/down state, CPU and memory load, device uptime, temperature, and power-supply health. SNMP can also send unsolicited alerts called traps when something changes — for example, a link going down — so you hear about a problem without having to ask.
This is exactly how Acutis Networks onboards your gear: it speaks SNMP to your switches and firewalls to read their interfaces, status, and counters automatically, so the appliance can build a live picture of the network without you hand-entering a thing. The practical takeaway — SNMP turns every supported device into something you can read on demand, and the OID is the address you read it by.
Acutis