faq

SNMP FAQ, Glossary & Reference: Answers & Standards

The SNMP reference hub — top questions answered, a glossary of terms, errors and diagnostics, the standards that define the protocol, and a quick-reference table.

By the SNMP Monitoring team · Reviewed July 2026

This is the quick-answers hub — the page to land on when you have a specific SNMP question and want the short version plus a link to the depth. If the rest of the site is the textbook, this cluster is the index and the cheat sheet. It routes to a plain-English glossary, a catalogue of common errors, a systematic diagnostic flow, an expanded Q&A, and the standards that define the protocol. Skim the top questions for the fast answer, grab a value from the quick-reference table, or follow a link into the detailed page when you need the full story. It's built for the person arriving from a search with one thing they need to know right now.

Parent: home. Related: what is SNMP, all sensors, troubleshooting.

Top SNMP questions

The questions people ask most, answered briefly — the full set is on common questions:

  • What is SNMP? The Simple Network Management Protocol — a standard way for a manager to read (and sometimes set) values on network devices and servers. Each value has an address called an OID, defined in a MIB. It's the lingua franca of infrastructure monitoring.
  • What port does SNMP use? The agent listens on UDP 161 for queries; UDP 162 receives traps (asynchronous notifications). Both are UDP, which is why a "no response" is a timeout rather than a refused connection.
  • Is SNMP secure? It depends on the version. v1 and v2c send a cleartext community string with no encryption — safe only on a trusted network. v3 adds authentication and encryption and is the secure choice; see SNMPv3.
  • What is an OID? An Object Identifier — a dotted-number address like 1.3.6.1.2.1.1.3.0 that names one specific piece of data (here, system uptime) in the global MIB tree.
  • What is a MIB? A Management Information Base — the dictionary that maps OIDs to human-readable names and types, so 1.3.6.1.2.1.1.5.0 becomes sysName.

Those five cover the bulk of first-time SNMP searches; the deeper explanations live across the what-is-SNMP cluster.

Glossary

SNMP has its own vocabulary, and a term you don't know can block a whole page. The glossary defines them all; the ones worth knowing first:

  • Agent — the SNMP software on the monitored device that answers queries.
  • Manager / NMS — the system that polls agents and collects data.
  • Community string — the cleartext shared secret in v1/v2c.
  • Trap — an unsolicited alert a device pushes to the manager.
  • Varbind — a variable binding, one OID-and-value pair in a message.

Start at the glossary whenever a term stops you; it links each definition back to the page that uses it in context.

Errors and diagnostics

When SNMP won't work, two pages get you unstuck, and they do different jobs. If you have a specific error messagenoSuchObject, authorizationError, a timeout — look it up on common errors for what it means and how to fix it. If you have no response and no idea why, work the diagnostics flow, which isolates the failure layer by layer: reachable → port open → agent listening → credentials valid → OID in view. A simple start-here rule:

  1. Got an error message?errors to decode it.
  2. Got silence (a timeout)?diagnostics to isolate where it breaks.
  3. Think it's a config mistake?troubleshooting for the config-side view.

The distinction matters because a timeout and an error reply point at completely different causes — one means the request never got answered, the other means it did and the agent said no.

Standards and RFCs

SNMP is defined by IETF RFCs, and knowing which is which helps when you're reading specs. The foundational ones: RFC 1157 defines SNMPv1; SNMPv2c came later with the GetBulk operation; and SNMPv3 is specified across RFC 3411–3418 (elevated to STD 62), which is the modern, secure version you should deploy today. The standards page lays out the full map, including the key MIB RFCs — MIB-II, IF-MIB, HOST-RESOURCES-MIB — that define the objects you actually poll. In 2026 the practical takeaway is simple: treat v3 as the target for anything on an untrusted path, and reach for the standard MIB RFCs before any vendor MIB, because standard objects read the same everywhere.

Quick reference table

The at-a-glance values, copy-friendly:

ItemValueMore
Agent portUDP 161Ports
Trap portUDP 162Ports
Versionsv1 / v2c / v3 (v3 secure)SNMPv3
System uptime1.3.6.1.2.1.1.3.0Uptime
CPU (per processor)1.3.6.1.2.1.25.3.3.1.2All sensors
Disk used1.3.6.1.2.1.25.2.3.1.6Disk
v1 standardRFC 1157Standards
v3 standardSTD 62 / RFC 3411–3418Standards

Bookmark this table for the values you look up most; each row links to the page with the full detail.

Frequently asked questions

What is SNMP?

SNMP (Simple Network Management Protocol) is an IETF-standard protocol for monitoring and managing network devices and servers. A manager queries an agent running on each device, reading values addressed by OIDs and defined in MIBs — everything from interface traffic to disk usage to temperature. It's the most widely supported monitoring protocol, implemented across routers, switches, firewalls, servers, printers, UPS units, and more.

What port does SNMP use?

SNMP agents listen on UDP port 161 for queries (get, getnext, getbulk, set). Trap receivers listen on UDP port 162 for the asynchronous notifications devices push when an event occurs. Both use UDP, not TCP, so an unreachable agent produces a timeout rather than a connection refusal — a distinction that matters when diagnosing why SNMP isn't responding.

Is SNMP secure?

It depends on the version. SNMPv1 and v2c authenticate with a cleartext community string and provide no encryption, so they're only safe on a trusted, segmented network with a source-IP allowlist. SNMPv3 adds real authentication and encryption (the USM model) and is the secure choice for anything on an untrusted path. Use v3 where you can, and never expose any version to the internet.

What is an OID?

An OID (Object Identifier) is a dotted-number address that uniquely names one piece of data in the global MIB tree — for example 1.3.6.1.2.1.1.3.0 is system uptime. The tree is hierarchical, with standard branches (like 1.3.6.1.2.1 for MIB-II) and vendor branches under 1.3.6.1.4.1. A MIB translates these numbers into readable names and defines their data types.

What is a MIB?

A MIB (Management Information Base) is the schema that defines what OIDs mean — mapping each numeric identifier to a human-readable name, a data type, and a description. Loading a MIB into your manager lets it show sysName instead of 1.3.6.1.2.1.1.5.0. Standard MIBs (MIB-II, IF-MIB, HOST-RESOURCES-MIB) work across vendors; vendor MIBs define device-specific objects under the enterprise branch.

Key takeaways

  • This hub gives the short answer plus a link to the depth — the entry point for a specific SNMP question.
  • Core facts: agent UDP 161, traps UDP 162, versions v1/v2c/v3 (v3 secure), data via OID/MIB.
  • Error message?errors. Silence/timeout?diagnostics. Term you don't know? → glossary.
  • Foundational standards: RFC 1157 (v1) and STD 62 / RFC 3411–3418 (v3).
  • The quick-reference table collects the ports, versions, and first OIDs you look up most.

In this section

Explore this section

Monitor it from outside the network

SNMP only tells you a box is healthy while something is still asking. ostr.io polls your endpoints externally and fires email + SMS alerts the moment a reading crosses your line — or the agent goes silent.