On 2021-08-04 04:31, Chuck Payne wrote:
> Try this, ok this is the correct syntax
>
> nmap -sP -p 9100 192.168.1-254
You probably missed a "1" in the third tuple.
nmap -sP -p 9100 192.168.1.1-254
or
nmap -sP -p 9100 192.168.1.0/24
If you meant to do permutation of the third tuple it would be:
nmap -sP -p 9100 192.168.0-255.0/24
--
/bengan