I wanted to scan the entirely of my home network using Nmap but was unsure of how I would go about this.
My default gateway and subnet mask are 192.168.0.1 and 255.255.255.0 respectively, so I first tried nmap -sS 192.168.0.1/24. However, this only seemed to scan from 192.168.0.0 to 192.168.0.255. What would be the best way to scan my entire local network instead of just that one segment? Would nmap -sS 192.168.0.1/8 scan everything from 192.0.0.0 to 192.255.255.255?
I would preferably like to start at the very beginning of ip ranges 10.0.0.0 to 10.255.255.255 to catch all networked devices like printers on my network but was wondering if this was feasible and how I could speed this up. As a /24 scan is taking me over 3 minutes.