Searching on goolge there is no easy explanation on how to make an snmpwalk on a device, thus I decided to describe how to walk the snmp tree of a device.
I suggest you to use one of 3 different tools:
- snmputil
- snmpwalk
- snmpbulkwalk.exe
You can find snmputil on this site and snmpwalk and snmpbulkwalk on this site.
Both of the programs need to run via command line CMD. What you need is the IP address of the device, the SNMP community string (at least RO – read only).
The syntax of snmputil is:
Code:
usage: snmputil [get|getnext|walk] agent community oid [oid ...]
snmputil trap
let’s say that the device is a Cisco device and has IP address 192.168.12.12 and community string public the command would be:
snmputil walk 192.168.12.12 public 1.3
snmputil walk 192.168.12.12 public 1.3
If you use snmpwalk and the device has snmp V1 the command would be:
snmpwalk -v1 -c public -On 192.168.12.12 1.3
If you use snmpbulkwalk and the device has snmp V2 the command would be:
snmpbulkwalk -v2c -c public -On 192.168.12.12 1.3
It should help.
If you have questions, please write in our Information Security Forum – ask Computer Questions.
Thanks
Tagged with: computer questions • security information forum • snmp • snmpbulkwalk • snmputil • snmpwalk • walk • walk a device
One Response to How to snmpwalk a device – walk a device with snmp
Leave a Reply Cancel reply

Translator

Like Us on Facebook!
Recent Virus Threats
Subscribe to our feed
Recent Posts
- Advanced Antispyware Solution Virus
- Smart HDD Virus
- Visa MasterCard Security Breach – 10 Million Customers May Be Affected
- Smart Fortress 2012
- Security Shield
- Windows Debugging Center Virus
- Best Virus Protection (Virus Removal)
- Antimalware PC Safety
- Windows Malware Sleuth
- Windows Attacks Preventor
- Windows Firewall Constructor
- Smart Fortress 2012 Virus
- Windows Pro Scanner Virus
- Windows Shield Tool Virus
- Strong Malware Defender Virus
Forums





nice