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

10/12/2018 4:58 PM

Last published date

3/22/2019 2:59 PM

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

User Device Tracker

Resolution

Disable VRF and Layer 3 polling using the Orion Web Console

  1. On the Orion Console, go to Settings > Manage nodes.
  2. Find the node, highlight it, and then select edit.
  3. Browse to the bottom of the page and untick the box next to Poll Layer 3 data from device.
  4. Tick the box next to Disable VRF context polling.

Perform the following using SQL commands from the database (NPM 11.5.x only):

  1. Find the Nodeid:
    1. Start > All Programs > Solarwinds Orion > Advanced Features > Database Manager > Add Default Server>

      Expand the NPM Database (default) NetPerfmon.

    2. Right-click the database name > Select New Query.
    3. ​Select nodeid from nodesdata where caption name = <NodeCaption>

      Where <Node Caption> is the node caption of the node you want to modify.

  1. Disable context polling:
    1. Right-click the database name > Select New Query.
    2. 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.
  1. Disable Layer 3 polling:
    1. 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.