Network/Router First IP Last IP Subnet Host Broadcast
Change the host label to Network
or network ID, that would be more accurate. Calling those addresses a host address doesn't make any sense. The Network ID, or Network Address, is the address within a subnet where all the host bits are zero.
Network 3 162.10.0.21 162.10.0.146 255.255.255.128 162.10.0.20 162.10.0.147
Sorry, but this one is wrong. There is no way you can take a /25
chunk out of the middle like that. The arithmetic, simply doesn't work out that way. If you need a /25
you only have 2 choices.
162.10.0.1 162.10.0.126 255.255.255.128 162.10.0.0 162.10.0.127
162.10.0.129 162.10.0.254 255.255.255.128 162.10.0.128 162.10.0.255
Address: 162.10.0.0 10100010.00001010.00000000.0 0000000
Netmask: 255.255.255.128 = 25 11111111.11111111.11111111.1 0000000
Wildcard: 0.0.0.127 00000000.00000000.00000000.0 1111111
Network: 162.10.0.0/25 10100010.00001010.00000000.0 0000000
HostMin: 162.10.0.1 10100010.00001010.00000000.0 0000001
HostMax: 162.10.0.126 10100010.00001010.00000000.0 1111110
Broadcast: 162.10.0.127 10100010.00001010.00000000.0 1111111
Address: 162.10.0.128 10100010.00001010.00000000.1 0000000
Netmask: 255.255.255.128 = 25 11111111.11111111.11111111.1 0000000
Wildcard: 0.0.0.127 00000000.00000000.00000000.0 1111111
Network: 162.10.0.128/25 10100010.00001010.00000000.1 0000000
HostMin: 162.10.0.129 10100010.00001010.00000000.1 0000001
HostMax: 162.10.0.254 10100010.00001010.00000000.1 1111110
Broadcast: 162.10.0.255 10100010.00001010.00000000.1 1111111
Network 1 162.10.1.1 162.10.2.253 255.255.254.0 162.10.1.0 162.10.2.254
Sorry, this one won't work either. A /23
that included the address 162.10.1.1
would need to start at 162.10.0.1
, and go to 162.10.1.254
. Like this.
Address: 162.10.0.0 10100010.00001010.0000000 0.00000000
Netmask: 255.255.254.0 = 23 11111111.11111111.1111111 0.00000000
Wildcard: 0.0.1.255 00000000.00000000.0000000 1.11111111
=>
Network: 162.10.0.0/23 10100010.00001010.0000000 0.00000000
HostMin: 162.10.0.1 10100010.00001010.0000000 0.00000001
HostMax: 162.10.1.254 10100010.00001010.0000000 1.11111110
Broadcast: 162.10.1.255 10100010.00001010.0000000 1.11111111
So to summarize, you have a lot of impossible subnets on that table. You need to take some time, and go back to the subletting fundamentals.