Before troubleshooting connectivity, ensure the SNMP agent is running on the target server.
ps -ef | grep snmpd
or
systemctl status snmpd
Open services.msc
Check SNMP Service
Ensure service is Running
Startup type should be Automatic
If SNMP service is not running, start it and retry.
If SNMP service is running, execute the troubleshooting script:
snmpwalk.bat (Windows)
snmpwalk.sh (Linux)
Navigate to:
AppManager/bin/troubleshooting
snmpwalk.bat [version] [community] [port] [hostname/IP] [timeout] [Manufacturer]
Defaults:
Version: v1
Community: public
Port: 161
Timeout: 5 seconds
SNMP connectivity
Discovery capability
Attribute data retrieval
If attributes show null, data is unavailable from SNMP agent.
If timeout occurs, check network/firewall/permissions.

SNMP configuration file location (varies by OS):
sudo cp /etc/snmp/snmpd.conf /etc/snmp/snmpd.conf.bak
Comment this line:
#agentaddress 127.0.0.1,[::1]
Add:
agentAddress udp:161,udp6:[::1]:161
Grant full access:
rocommunity <community_string>
Restrict to specific IP:
rocommunity <community_string> <IP>
Example:
rocommunity public default
rwcommunity private 10.10.10.0/24
Grant access:
rouser <snmpv3_user>
For subtree access:
view sysView included .1.3.6.1.2.1
rouser user1 authpriv -V sysView
systemctl restart snmpd
Ensure access to:
HOST-RESOURCES-MIB (.1.3.6.1.2.1)
UCD-SNMP-MIB (.1.3.6.1.4.1.2021)
Open Control Panel
Go to Programs → Turn Windows features on or off
Enable Simple Network Management Protocol (SNMP)
Click OK
Open Services (services.msc)
Right-click SNMP Service → Properties
Go to Security tab
Click Add
Enter community name (case-sensitive)
Select permission level (Read Only recommended)
Click Add
Choose one:
Accept SNMP packets from any host
Accept SNMP packets only from specified hosts (Recommended)
If restricting, add the Applications Manager server IP.
Startup type: Automatic
Click Apply → OK
If you get "Request Timed Out":
Ping target device from Applications Manager server
Ensure UDP port 161 is open
Verify firewall rules
Confirm correct SNMP version and credentials
Increase timeout value in monitor settings
If issue persists, share:
SNMPwalk output
Support Information File from Applications Manager
This helps us analyze and provide RCA quickly.