Question

When I use this command which IP addresed are scanned

# nmap -sP 192.168.0.120/25           

How can I get the IP range when I have the addres and subnet. Because I am trying to understand this, but no result till now..Please help me..Thank a lot

Was it helpful?

Solution 2

192.168.0.120

This says that the IP address is 192.168.0.120.

/25

This says that the netmask is 25 bits long. As an IPv4 address is 32 bits, that leaves 7 bits for the address. The lowest IP address in the range is given by masking out the bottom 7 bits, and the highest by adding 127 (=27-1) to that.

OTHER TIPS

You can use ipcalc, a nice *nix tool to guide you:

    ~ $  ipcalc 192.168.0.120/25
    Address:   192.168.0.120        11000000.10101000.00000000.0 1111000
    Netmask:   255.255.255.128 = 25 11111111.11111111.11111111.1 0000000
    Wildcard:  0.0.0.127            00000000.00000000.00000000.0 1111111
    =>
    Network:   192.168.0.0/25       11000000.10101000.00000000.0 0000000
    HostMin:   192.168.0.1          11000000.10101000.00000000.0 0000001
    HostMax:   192.168.0.126        11000000.10101000.00000000.0 1111110
    Broadcast: 192.168.0.127        11000000.10101000.00000000.0 1111111
    Hosts/Net: 126                   Class C, Private Internet 
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top