# Configuring SNMP Agent in Cisco Devices SNMP, or Simple Network Management Protocol, is a crucial component for network management, allowing OpManager to effectively monitor and manage network devices. An SNMP Agent is a very small file that is installed on a network device. The agent collects and sends its operational data to an SNMP manager, for easy network monitoring and management. This help document will guide you through the process of configuring OpManager's SNMP Agent in a Cisco device. To configure SNMP agents in Cisco devices, you need to log into the device and switch to privileged mode. Use the following set of commands listed below to enable SNMP: - [Enable SNMP](https://www.manageengine.com/network-monitoring/help/configuring-snmp-cisco.html#enableSNMP) - [Enable Trap](https://www.manageengine.com/network-monitoring/help/configuring-snmp-cisco.html#enableTrap) - [Set OpManager as Host](https://www.manageengine.com/network-monitoring/help/configuring-snmp-cisco.html#setOpManagerHost) ## To enable SNMP: From the command prompt, run the following commands: ```bash #configure terminal #snmp-server community rw/ro (example: snmp-server community public ro) #end #copy running-config startup-config ``` ## To enable trap: Again, from the command prompt, run the following commands: ```bash #configure terminal #snmp-server enable traps snmp authentication #end #copy running-config startup-config ``` ## To set OpManager as host: Run the following commands from the command prompt: ```bash #configure terminal #snmp-server host snmp (example: snmp-server host 192.168.9.58 public snmp) #end #copy running-config startup-config ``` For more information, visit [CISCO](https://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2960/software/release/12-2_55_se/configuration/guide/scg_2960/swsnmp.html).