How to i calculate ip address range from subnet mask

ipnetworkingsubnet

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

Best Answer

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 
Related Topic