ADSP SNMP Polling
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎06-15-2022 04:54 AM
We configured standard SNMP configuration on ADSP controller and Juniper switch, but when we checked the SNMP discovery for the network switch is not polled on ADSP controller. Please help.
Screenshot.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎06-16-2022 11:45 PM
Thank you for the info you shared. Currently I tried to poll Extreme Switch and it worked. I'll check SNMP walk to our 3rd party brand later and see if what is wrong.
Best Regards,
Gerald
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Get Direct Link
- Report Inappropriate Content
‎06-16-2022 08:09 AM
ssh to the AirDefense via putty using smxmgr credentials
command "letmeout" will break you out of the ADSPadmin script
here is the standard smmpwalk you will need to run it in sudo
snmpwalk -v3 -u [SNMPv3 user] –a (MD5|SHA) -A [passcode] -l [set-security-level] –X <encryption_password> deviceIP <OID> .
-u : is the snmp v3 user.
-A : is the passcode.
-l : is the authentication mode [noAuthNoPriv|authNoPriv|authPriv].
-a : is the authentication protocol (MD5|SHA).
-m ALL (if no OID)
EX for a default extreme networks setup:
sudo snmpwalk –v3 –u snmpmanager –a MD5 –A admin –l authPriv –X admin123 10.10.10.1–m ALL
