SNMP

We will show how we can gather SNMP information manually and with tools.

SNMP Management Information Base (MIB)

Windows SNMP MIB values

MIB Values
Description

1.3.6.1..1.25.1.6.0

System Processes

1.3.6.1.2.1.25.4.2.1.2

Running Programs

1.3.6.1.2.1.25.4.2.1.4

Processes Path

1.3.6.1.2.1.25.2.3.1.4

Storage Units

1.3.6.1.2.1.25.6.3.1.2

Software Names

1.3.6.1.4.1.77.1.2.25

User Accounts

1.3.6.1.2.1.6.13.1.3

TCP Local Ports


Tools

nmap

sudo nmap -sU --open -p 161 -oG nmap/openSNMP.txt 10.10.10.100 

onesixtyone

onesixtyone -c <community-string> -i 10.10.10.100 

snmpwalk

snmpwalk -c public -v 2c -t 10 10.10.10.100 
snmpwalk -c public -v 2c -t 10 10.10.10.100 <mib-valuse>

snmpbulkwalk

snmpbulkwalk -c public -v2c 10 10.10.10.100 > loot/snmpOut.txt

Last updated