Massassi Forums Logo

This is the static archive of the Massassi Forums. The forums are closed indefinitely. Thanks for all the memories!

You can also download Super Old Archived Message Boards from when Massassi first started.

"View" counts are as of the day the forums were archived, and will no longer increase.

ForumsDiscussion Forum → Network utility question
Network utility question
2007-12-18, 12:22 AM #1
[nevermind, I figured it out. Nmap is awesome.]
2007-12-18, 12:55 AM #2
Look under "HOST DISCOVERY" in the nmap manpage.
What you're looking for is probably
Code:
nmap -sP 192.168.1.*


It pings every address to see if it's up. Of course, that won't work when they're dropping ICMP echo requests, like most desktop firewalls do. You'll find more about what to do then in the manpage.
Sorry for the lousy German
2007-12-18, 12:58 AM #3
Originally posted by Impi:
Look under "HOST DISCOVERY" in the nmap manpage.
What you're looking for is probably
Code:
nmap -sP 192.168.1.*


It pings every address to see if it's up. Of course, that won't work when they're dropping ICMP echo requests, like most desktop firewalls do. You'll find more about what to do then in the manpage.



I've just finished a scan (it took quite a few minutes) with

nmap -sL -d 192.168.1.0/24


Your way is much faster. Thanks!

↑ Up to the top!