This post is to serve as a quick page to go to remember how to quickly scan a network for hardware and stuff connected to it because you, like me, probably forget all the timeā¦
- Figure out your LAN IP address that you want to scan (probably you didn’t forget this like me!). Let’s pretend it’s 192.168.0.1 for this post, but change it to whatever it is for you
- Quick scan just for IP addresses:
sudo nmap -sn 192.168.4.0/24
- Deeper scan (the one I always use) to see manufacturer, and all that good stuff:
sudo nmap 192.168.0.1/24
- Target one IP for more juice:
sudo nmap -A -T4 192.168.0.23
Special thanks to this blog that I always end up at but never have enough time to read.