Network Management
Error: <SNMP-3-AUTHFAIL: Authentication Failure for SNMP>
This article provides a resolution to an issue when UDT polls Cisco Switches and you receive the following error: <SNMP-3-AUTHFAIL: Authentication Failure for SNMP >
First published date
Last published date
Overview
This article describes the issue when UDT polls Cisco Switches and you receive the following error:
<SNMP-3-AUTHFAIL: Authentication Failure for SNMP >
Product section
Resolution
Disable VRF and Layer 3 polling using the Orion Web Console
- On the Orion Console, go to Settings > Manage nodes.
- Find the node, highlight it, and then select edit.
- Browse to the bottom of the page and untick the box next to Poll Layer 3 data from device.
- Tick the box next to Disable VRF context polling.
Perform the following using SQL commands from the database (NPM 11.5.x only):
- Find the Nodeid:
- Start > All Programs > Solarwinds Orion > Advanced Features > Database Manager > Add Default Server>
Expand the NPM Database (default) NetPerfmon.
- Right-click the database name > Select New Query.
- Select nodeid from nodesdata where caption name = <NodeCaption>
Where <Node Caption> is the node caption of the node you want to modify.
- Start > All Programs > Solarwinds Orion > Advanced Features > Database Manager > Add Default Server>
- Disable context polling:
- Right-click the database name > Select New Query.
- Run the following query:
-- Scripts are not supported under any SolarWinds support program or service. -- Scripts are provided AS IS without warranty of any kind. SolarWinds further -- disclaims all warranties including, without limitation, any implied warranties -- of merchantability or of fitness for a particular purpose. The risk arising -- out of the use or performance of the scripts and documentation stays with you. -- In no event shall SolarWinds or anyone else involved in the creation, -- production, or delivery of the scripts be liable for any damages whatsoever -- (including, without limitation, damages for loss of business profits, business -- interruption, loss of business information, or other pecuniary loss) arising -- out of the use of or inability to use the scripts or documentation. UPDATE UDT_NODECAPABILITY SET CONTEXTPOLLINGDISABLED=0 where nodeid = '<Nodeid>'
where <NodeID> is the node id gathered earlier.
- Disable Layer 3 polling:
- Execute the following query:
-- Scripts are not supported under any SolarWinds support program or service. -- Scripts are provided AS IS without warranty of any kind. SolarWinds further -- disclaims all warranties including, without limitation, any implied warranties -- of merchantability or of fitness for a particular purpose. The risk arising -- out of the use or performance of the scripts and documentation stays with you. -- In no event shall SolarWinds or anyone else involved in the creation, -- production, or delivery of the scripts be liable for any damages whatsoever -- (including, without limitation, damages for loss of business profits, business -- interruption, loss of business information, or other pecuniary loss) arising -- out of the use of or inability to use the scripts or documentation. UPDATE UDT_NODECAPABILITY SET ENABLED=0 WHERE CAPABILITY=3 and nodeid = '<Nodeid>'
where <NodeID> is the node id gathered earlier.
- Execute the following query: