So, you created your subnet in the range 192.168.0.0/16, which also means the subnet mask 255.255.0.0 . Your address range for this block is 192.168.0.0-192.168.255.255 , so you can use any range in this block for your CIDR block.
Thus, the CIDR block 192.168.250.225/16 will also have the same address range 192.168.0.0/16 , because you are using the same subnet mask 255.255.0.0 (which means /16 at the end of the address).
You can learn more about this here: http://en.wikipedia.org/wiki/Classless_Inter-Domain_Routing
What you want is a CIDR block, which is within the range of 192.168.0.0/16 , so such blocks will work, for example: 192.168.0.0/24 , 192.168.1.0/24 , 192.168.2.0/24 , 192.168.3.0/24 , 192.168.128.0/24 , (these blocks have 256 possible addresses - broadcast and gateway) 192.168.20.0/23 (This block has 512 possible addresses - broadcast and gateway). Thus, in essence, everything that is inside 192.168.0.0/16 does not overlap with the existing CIDR block.
Hope this helps.
source share