SNMP: Difference between revisions

From Dave-Wiki
(Created page with "=Summary= SNMP (Simple Network Management Protocol) is a protocol used for monitoring, managing, and configuring network devices such as routers, switches, servers, printers, and other devices connected to a network. It enables administrators to collect and organize information about network devices and make changes to their configurations remotely. =General= ==To install on RHEL/CentOS== sudo yum install net-snmp net-snmp-utils sudo systemctl enable snmpd Replac...")
 
m (Dave moved page Snmpd to SNMP)

Revision as of 16:15, 21 January 2025

Summary

SNMP (Simple Network Management Protocol) is a protocol used for monitoring, managing, and configuring network devices such as routers, switches, servers, printers, and other devices connected to a network. It enables administrators to collect and organize information about network devices and make changes to their configurations remotely.

General

To install on RHEL/CentOS

sudo yum install net-snmp net-snmp-utils
sudo systemctl enable snmpd

Replace /etc/snmp/snmpd.conf with:

rocommunity "{community_string}" {ip_of_snmp_collector}

sudo systemctl start snmpd

Note Info:  Don't forget to allow snmp traffic thru your local firewall, too.