Hello,
I want to scan large networks and find out where an SNMP port is open and which version is being used.
Is that possible?
Best regards
Hello,
I want to scan large networks and find out where an SNMP port is open and which version is being used.
Is that possible?
Best regards
Yes, but nmap might be suitable for that task:
like:
nmap -sU -p 161 -sV -sC -A target/mask
or
nmap -sU -p 161 --script snmp-* target/mask
Eero
Thank you very much.