SNMP is installed in the server and SNMP request is getting timed out
Make sure whether SNMP is installed and running in the server. Also refer
here in case you are not able to view monitored data.
If SNMP is running and the SNMP request is still getting timed out, follow the below troubleshooting steps :
- Check whether the target server is reachable from Applications Manager host.
- Check if SNMP UDP port of the target server is open from Applications Manager host
- Check if any firewall is blocking SNMP traffic between Applications Manager and the target server. Also check if there is any security is present to restrict access from Applications Manager host.
- Increase the timeout by editing and modifying the value of the monitor.
- Please check whether is SNMP configured correctly. Please re-install SNMP in the server and check. Learn more.
If few OIDs alone show data and few others do not :
- The MIB (in which the OID is present ) may not have been implemented in the SNMP agent. Please check with the vendor.
- Increase the timeout by editing and modifying the value of the monitor.
- If the MIB is implemented, then verify the SNMP configuration. Try re-installing SNMP in the server. Learn more.
SNMP access restriction
Windows
- Click Start, go to Control Panel -> Administrative Tools, and then click Computer Management.
- In the console tree, expand Services and Applications, and then click Services.
- In the right pane, double-click SNMP Service.
- Click the Security tab.
- Check if Accept SNMP packets from these hosts is selected.
- If yes, click Add and type Applications Manager Host/IP.
Linux
- In linux, iptables is configured to allow SNMP traffic from trusted sources alone.
- Execute the below command to list down all the rules for SNMP UDP port ( 161 is the default SNMP port )
$ sudo iptables -nvL | grep '161' - If entries are present, run the below commands to allow traffic from Applications Manager host
$ iptables -A INPUT -s <ip addr> -p udp -m udp --dport 161 -j ACCEPT
$ iptables -A OUTPUT -p udp -m udp --sport 161 -j ACCEPT
You can verify the SNMP connection and the OID values using our MibBrowser tool.
More details
New to ADSelfService Plus?
Related Articles
SNMP Troubleshooting Guide
1) Please check the snmp agent is running in problematic remote server or not. 2) if it is running then execute the snmpwalk.bat / snmpwalk.sh This snmpwalk is used to check if the connectivity and the Discovery of the SNMP Server is possible from ...
Troubleshooting Bad Request and Internal Server error
Bad Request & Internal Server error When the server of URL cannot understand the request it has received it responds with a Bad request or a malformed syntax error message. If there is an error in processing the request received by the server, it ...
Mail Server Monitor - Troubleshooting
Common Mail Server Monitor Errors and Troubleshooting Guide 1. Unknown Host Error Description: This error occurs when the mail client cannot resolve the hostname of the mail server to an IP address. The issue typically arises from DNS resolution ...
I am not able to view monitored data in SNMP mode, I get the "No data Available" message.
If you are not able to view the monitored data in SNMP mode, the following are the possible reasons : SNMP service is not enabled on the server. Make sure SNMP service is installed and is running. The SNMP request might have timed out. Refer here. ...
Getting "Unable to invoke Oracle HTTP Server Details" message for Request throughput and server response time.
Solution: Check if the OHS(Oracle HTTP Server) server is running. If not, start the OHS using the following steps : 1.To start all OHS components in an Oracle instance, using opmnctl, use : - $ORACLE_INSTANCE/bin/opmnctl startproc process-type=OHS ...