Advertisement
Guest User

Untitled

a guest
Jun 27th, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.35 KB | None | 0 0
  1. We want you to subnet the allocated IP address such that each subnet can have about 1000 hosts each.
  2. You are required to answer the following questions regarding this subnetted network:
  3. a. What is the new custom subnet mask? (Write in CIDR format (ie /nn) AND dotted decimal format AND N…N.S….S.H…H format, where N=network, S=subnet and H = host bits)
  4. b. How many usable subnets will be created?
  5. c. What will be the maximum number of hosts on any one subnet?
  6. d. Fill out the following table for the FIRST 3 and LAST 3 USABLE SUBNETS:
  7.  
  8.  
  9. Subnet Practice: 107.128.0.0 /9
  10. We want to subnet so it has about 1000 hosts….
  11.  
  12. a)
  13. Before:
  14. NNNNNNNN.SHHHHHHHH.HHHHHHHH.HHHHHHHH
  15. 255.128.0.0
  16. 107.128.0.0 /9
  17. After:
  18. NNNNNNNN.SSSSSSSS.SSSSSSHH.HHHHHHHH
  19. 255.255.252.0
  20. 107.128.0.0 /22
  21.  
  22. b)
  23. Before:
  24. 2 Subnets
  25. After:
  26. (2^14) = 16384 subnets
  27. c)
  28.  
  29. Before:
  30. (2^23 - 2) = 8388606 hosts per subnet
  31. After:
  32. (2^10 – 2) = 1022 hosts per subnet
  33.  
  34.  
  35. d)
  36. Subnet First host address Last host address Broadcast address
  37. First 107.128.0.1 107.128.3.254 107.128.3.255
  38. Second 107.128.4.1 107.128.7.254 107.128.7.255
  39. Third 107.128.8.1 107.128.11.254 107.128.11.255
  40. Third last 107.128.244.1 107.128.247.254 107.128.247.255
  41. Second last 107.128.248.1 107.128.251.254 107.128.251.255
  42. Last 107.128.252.1 107.128.255.254 107.128.255.255
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement