SNMP
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://ipfyi.com/iframe/glossary/snmp/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://ipfyi.com/glossary/snmp/
Add a dynamic SVG badge to your README or docs.
[](https://ipfyi.com/glossary/snmp/)
Use the native HTML custom element.
Определение
Простой протокол управления сетью. Протокол для мониторинга и управления сетевыми устройствами (маршрутизаторы, коммутаторы, серверы) путём сбора метрик и данных конфигурации. Агенты на устройствах отчитываются перед центральным SNMP-менеджером.
Network Management Protocol
SNMP (Simple Network Management Protocol) is the dominant protocol for monitoring and managing network devices such as routers, switches, servers, and printers. A management station (NMS) queries SNMP agents running on devices to retrieve status information — interface traffic counters, CPU load, memory usage, temperature — or to set configuration values. SNMP also supports Traps: unsolicited alerts sent by devices to the NMS when notable events occur, such as an interface going down.
MIB and OID Structure
All data accessible via SNMP is organized in a hierarchical tree called the Management Information Base (MIB). Each data point has a globally unique Object Identifier (OID) — a dotted numeric path like 1.3.6.1.2.1.2.2.1.10 (ifInOctets, inbound bytes on an interface). Vendors publish proprietary MIBs for device-specific metrics in addition to the standard RFC-defined MIBs. The NMS must have the MIB files loaded to translate OIDs into human-readable names.
Security Versions
SNMPv1 and v2c use a shared "community string" (essentially a plain-text password) for authentication, with no EncryptionThe process of converting plaintext data into ciphertext using a cryptographic algorithm and key, making it unreadable without the corresponding decryption key. The foundation of secure communication on the internet. of traffic. These versions are still widely deployed but are vulnerable to interception and should only be used on isolated management networks. SNMPv3 introduced user-based authentication with MD5 or SHA and optional EncryptionThe process of converting plaintext data into ciphertext using a cryptographic algorithm and key, making it unreadable without the corresponding decryption key. The foundation of secure communication on the internet. of the payload with AES or DES. Any internet-facing or multi-tenant environment should use SNMPv3. SNMP runs on UDPUser Datagram Protocol. A connectionless transport protocol that sends datagrams without establishing a connection or guaranteeing delivery. Faster than TCP, it is preferred for real-time applications like DNS queries, VoIP, gaming, and streaming. port 161 for queries and 162 for traps.