---
type: FAQ
title: "SNMP FAQ, Glossary & Reference: Answers & Standards"
description: "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."
resource: "https://snmp-monitoring.info/faq/"
tags: [faq]
timestamp: 2026-07-11T00:00:00Z
---

# 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.

## Related concepts

- Up: [SNMP Monitoring Explained — Protocol, Sensors & Tools](/index.md)
- [Why SNMP Is Not Working: A Step-by-Step Diagnostic](/faq/diagnostics/index.md)
- [Common SNMP Errors & Fixes (Error Message Lookup)](/faq/errors/index.md)
- [SNMP Questions & Answers: Quick, Accurate Replies](/faq/questions/index.md)
- [SNMP RFCs & Standards Reference (Complete List)](/faq/standards/index.md)

## 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.

## Source

Concept generated from https://snmp-monitoring.info/faq/ — the SNMP Monitoring vendor-neutral knowledge base. Content is limited to what that page states (no external claims added here).
