Lets say I have to create 256 subnets (it could be any number), how would I find the first and last (network/broadcast addresses) for a randomly chosen subnet? For instance, subnet 139.
I'll give an example. Network IP: 145.0.0.0/8 This IP needs to be subsetted into 300 subnets. Network mask: 255.0.0.0 Network address (first address):145.0.0.0/8 Broadcast address: 145.255.255.255/8 Number of hosts: 2^(32-8) = 16777216 Addresses/subnet: 65536 (16777216/256) Subnet mask: /16
I'm not really concerned about usable addresses, just trying to understand a concept.
The first subnet would be: Network address: 145.0.0.0/16 Broadcast Address: 145.0.255.255
So, is there a formula or method to finding a randomly picked subnet's network/broadcast address?