Guest User

Untitled

a guest
Jul 17th, 2018
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.14 KB | None | 0 0
  1. # So, subnetting.
  2.  
  3. Let's say we're given the addressblock starting at 192.192.192.0, or `FF FF FF
  4. 00`. This gives us a full byte of addresses to assign as we see fit, excluding
  5. network-address and broadcast-address, this leaves 254 hosts that could be
  6. given addresses.
  7.  
  8. Now let's also say we need to connect four subnets, and give them all addresses
  9. out of that block. So, we take 2 bits from our 8 freely-assignable ones, and
  10. use them to encode these subnets. 00 is the first, 01 is the second, 10 is the
  11. third, and 11 finally the fourth. This now leaves six bits to uniquely identify
  12. hosts, but we have four subnets to do it in.
  13.  
  14. This means we now have a subnet mask of `FF FF FF C0`, with the two bits we
  15. took away from our block used to identify subnets, for a maximum of 4 * 64 - 8
  16. = 248 uniquely addressable hosts. (8 Hosts subtracted due to
  17. network-identifiers and subnet-broadcast addresses?)
  18.  
  19. # Questions
  20.  
  21. - What's the notation for subnets? In the example given above, it is my
  22. understanding that it's a "/8" Subnet?
  23. - Do manually-subnetted subnets have a network identifier and broadcast
  24. address, or are those addresses that could be handed out?
Add Comment
Please, Sign In to add comment