Advertisement
Guest User

CCNAv6 - Chapter 7 Practice Skills Assessment - PT

a guest
Feb 15th, 2018
659
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.77 KB | None | 0 0
  1. =======================================
  2. */ Main (router) /*
  3. =======================================
  4. enable
  5. conf ter
  6. hostname Main
  7. no ip domain-lookup
  8. enable secret cisco
  9.  
  10. line console 0
  11. password cisco
  12. login
  13.  
  14. line vty 0 15
  15. password cisco
  16. login
  17. exit
  18.  
  19. int g0/0.20
  20. encapsulation dot1Q 20
  21. ip address 172.16.20.254 255.255.255.0
  22.  
  23. int g0/0.40
  24. encapsulation dot1Q 40
  25. ip address 172.16.40.254 255.255.255.0
  26.  
  27. int g0/0.60
  28. encapsulation dot1Q 60
  29. ip address 172.16.60.254 255.255.255.0
  30.  
  31. int g0/0.88
  32. encapsulation dot1Q 88
  33. ip address 172.16.88.254 255.255.255.0
  34.  
  35. int g0/0
  36. no sh
  37.  
  38. int g0/1.250
  39. encapsulation dot1Q 250
  40. ip address 172.16.250.254 255.255.255.0
  41.  
  42. int g0/1.254
  43. encapsulation dot1Q 254
  44. ip address 172.16.254.254 255.255.255.0
  45.  
  46. int g0/1
  47. no shutdown
  48. exit
  49.  
  50. access-list 10 permit 172.16.60.0 0.0.0.255
  51. access-list 10 deny any
  52. ip access-list standard INT-WEB
  53. permit 172.16.40.0 0.0.0.255
  54. permit 172.16.60.0 0.0.0.255
  55.  
  56. exit
  57. line vty 0 15
  58. access-class 10 in
  59. exit
  60.  
  61. int g0/1.250
  62. ip access-group INT-WEB out
  63.  
  64. =======================================
  65. */ ArtBldg (switch) /*
  66. =======================================
  67. en
  68. conf ter
  69. hostname ArtBldg
  70. no ip domain-lookup
  71. enable secret cisco
  72. line console 0
  73. password cisco
  74. login
  75. line vty 0 15
  76. password cisco
  77. login
  78. exit
  79. service password-encryption
  80.  
  81. vlan 20
  82. name Student
  83. vlan 40
  84. name Faculty
  85. vlan 60
  86. name Admin
  87. vlan 88
  88. name Management
  89. exit
  90.  
  91. int vlan 88
  92. ip add 172.16.88.253 255.255.255.0
  93. no shutdown
  94. exit
  95. ip default-gateway 172.16.88.254
  96. vtp domain School
  97.  
  98. int g0/1
  99. switchport mode trunk
  100. int range f0/23-24
  101. switchport mode trunk
  102.  
  103. =======================================
  104. */ 1stF (switch) /*
  105. =======================================
  106. en
  107. conf ter
  108. hostname 1stF
  109. vlan 20
  110. name Student
  111. vlan 40
  112. name Faculty
  113. vlan 60
  114. name Admin
  115. vlan 88
  116. name Management
  117. exit
  118.  
  119. int range fastEthernet 0/1-5
  120. switchport mode access
  121. switchport access vlan 20
  122. int range fastEthernet 0/6-10
  123. switchport mode access
  124. switchport access vlan 40
  125. int range fastEthernet 0/11-15
  126. switchport mode access
  127. switchport access vlan 60
  128. exit
  129. int vlan 88
  130. ip add 172.16.88.252 255.255.255.0
  131. no sh
  132. no shutdown
  133. exit
  134. ip default-gateway 172.16.88.254
  135. vtp domain School
  136.  
  137. int f0/23
  138. switchport mode trunk
  139.  
  140. =======================================
  141. */ 2ndF (switch) /*
  142. =======================================
  143. en
  144. conf ter
  145. hostname 2ndF
  146. vlan 20
  147. name Student
  148. vlan 40
  149. name Faculty
  150. vlan 60
  151. name Admin
  152. vlan 88
  153. name Management
  154. exit
  155.  
  156. int range fa0/1-5
  157. switchport mode access
  158. switchport access vlan 20
  159. int range fa0/6-10
  160. switchport mode access
  161. switchport access vlan 40
  162. int range fa0/11-15
  163. switchport mode access
  164. switchport access vlan 60
  165. exit
  166. int vlan 88
  167. ip add 172.16.88.251 255.255.255.0
  168. no shutdown
  169. exit
  170.  
  171. ip default-gateway 172.16.88.254
  172. vtp domain School
  173.  
  174. int f0/24
  175. switchport mode trunk
  176.  
  177.  
  178. ====================================================
  179. */ HOST ADDRESSING /*
  180. ====================================================
  181. #Student1
  182. IPv4 : 172.16.20.10
  183. Subnet : 255.255.255.0
  184. GW : 172.16.20.254
  185. DNSv4 : 172.16.254.252
  186.  
  187. #Faculty1
  188. IPv4 : 172.16.40.10
  189. Subnet : 255.255.255.0
  190. GW : 172.16.40.254
  191. DNSv4 : 172.16.254.252
  192.  
  193. #Admin1
  194. IPv4 : 172.16.60.10
  195. Subnet : 255.255.255.0
  196. GW : 172.16.60.254
  197. DNSv4 : 172.16.254.252
  198.  
  199.  
  200. ==============================
  201.  
  202. #Student2
  203. IPv4 : 172.16.20.11
  204. Subnet : 255.255.255.0
  205. GW : 172.16.20.254
  206. DNSv4 : 172.16.254.252
  207.  
  208. #Faculty2
  209. IPv4 : 172.16.40.11
  210. Subnet : 255.255.255.0
  211. GW : 172.16.40.254
  212. DNSv4 : 172.16.254.252
  213.  
  214. #Admin2
  215. IPv4 : 172.16.60.11
  216. Subnet : 255.255.255.0
  217. GW : 172.16.60.254
  218. DNSv4 : 172.16.254.252
  219.  
  220.  
  221. =========================================
  222. / /
  223. / 90% /
  224. / /
  225. =========================================
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement