i'm trying to simulate a network made up of 5 subnetworks using a class b 172.100.18.0/18 address. i need to further subdivide such ip address into 5 to accommodate all 5 subnetworks. here's what i came up so far with.
sub-subnetworks needed: 5
available subnetwork divided into 8
current subnet mask: 255.255.192.0 (11111111.11111111.11000000.00000000)
new subnet mask: 255.255.248.0 (11111111.11111111.11111000.00000000)
what i did was this subdivide the network into this IP ranges
172.168.18.0-172.168.25.255
172.168.26.0-172.168.33.255
172.168.34.0-172.168.41.255
172.168.42.0-172.168.49.255
172.168.50.0-172.168.57.255
172.168.58.0-172.168.65.255
172.168.66.0-172.168.73.255
172.168.74.0-172.168.81.255
the problem now is that somewhere in the network upon configuring the router, it says that it overlaps with another IP range. pretty sure there is something wrong with how i divided the network (or maybe my subnetting is all wrong after all).
my question now is, how can if further subdivide such network (given the /18 subnet mask) properly/correctly?