Advertisement
Guest User

Untitled

a guest
Sep 21st, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. Router 1 (HUB)
  2. !
  3. version 12.2
  4. no service timestamps log datetime msec
  5. no service timestamps debug datetime msec
  6. no service password-encryption
  7. !
  8. hostname Router
  9. !
  10. !
  11. !
  12. !
  13. !
  14. !
  15. !
  16. !
  17. ip cef
  18. no ipv6 cef
  19. !
  20. !
  21. !
  22. !
  23. !
  24. !
  25. !
  26. !
  27. !
  28. !
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. !
  36. !
  37. interface FastEthernet0/0
  38. no ip address
  39. duplex auto
  40. speed auto
  41. shutdown
  42. !
  43. interface FastEthernet1/0
  44. no ip address
  45. duplex auto
  46. speed auto
  47. shutdown
  48. !
  49. interface Serial2/0
  50. ip address 172.12.123.1 255.255.255.0
  51. encapsulation frame-relay
  52. frame-relay interface-dlci 102
  53. frame-relay interface-dlci 103
  54. !
  55. interface Serial3/0
  56. no ip address
  57. shutdown
  58. !
  59. interface FastEthernet4/0
  60. no ip address
  61. shutdown
  62. !
  63. interface FastEthernet5/0
  64. no ip address
  65. shutdown
  66. !
  67. router rip
  68. version 2
  69. network 2.0.0.0
  70. network 3.0.0.0
  71. network 172.12.0.0
  72. no auto-summary
  73. !
  74. ip classless
  75. !
  76. ip flow-export version 9
  77. !
  78. !
  79. !
  80. !
  81. !
  82. !
  83. !
  84. line con 0
  85. !
  86. line aux 0
  87. !
  88. line vty 0 4
  89. login
  90. !
  91. !
  92. !
  93. end
  94.  
  95. -----------------------------------
  96. R2 (SPOKE)
  97. !
  98. version 12.2
  99. no service timestamps log datetime msec
  100. no service timestamps debug datetime msec
  101. no service password-encryption
  102. !
  103. hostname Router
  104. !
  105. !
  106. !
  107. !
  108. !
  109. !
  110. !
  111. !
  112. ip cef
  113. no ipv6 cef
  114. !
  115. !
  116. !
  117. !
  118. !
  119. !
  120. !
  121. !
  122. !
  123. !
  124. !
  125. !
  126. !
  127. !
  128. !
  129. !
  130. !
  131. !
  132. interface Loopback2
  133. ip address 2.2.2.2 255.255.255.0
  134. !
  135. interface FastEthernet0/0
  136. no ip address
  137. duplex auto
  138. speed auto
  139. shutdown
  140. !
  141. interface FastEthernet1/0
  142. no ip address
  143. duplex auto
  144. speed auto
  145. shutdown
  146. !
  147. interface Serial2/0
  148. ip address 172.12.123.2 255.255.255.0
  149. encapsulation frame-relay
  150. frame-relay interface-dlci 201
  151. !
  152. interface Serial3/0
  153. no ip address
  154. shutdown
  155. !
  156. interface FastEthernet4/0
  157. no ip address
  158. shutdown
  159. !
  160. interface FastEthernet5/0
  161. no ip address
  162. shutdown
  163. !
  164. router rip
  165. version 2
  166. network 2.0.0.0
  167. network 172.12.0.0
  168. no auto-summary
  169. !
  170. ip classless
  171. ip route 172.12.123.3 255.255.255.255 172.12.123.1
  172. ip route 2.2.2.2 255.255.255.255 172.12.123.1
  173. !
  174. ip flow-export version 9
  175. !
  176. !
  177. !
  178. !
  179. !
  180. !
  181. !
  182. line con 0
  183. !
  184. line aux 0
  185. !
  186. line vty 0 4
  187. login
  188. !
  189. !
  190. !
  191. end
  192. ------------------------------
  193. R3
  194. !
  195. version 12.2
  196. no service timestamps log datetime msec
  197. no service timestamps debug datetime msec
  198. no service password-encryption
  199. !
  200. hostname Router
  201. !
  202. !
  203. !
  204. !
  205. !
  206. !
  207. !
  208. !
  209. ip cef
  210. no ipv6 cef
  211. !
  212. !
  213. !
  214. !
  215. !
  216. !
  217. !
  218. !
  219. !
  220. !
  221. !
  222. !
  223. !
  224. !
  225. !
  226. !
  227. !
  228. !
  229. interface Loopback3
  230. ip address 3.3.3.3 255.255.255.0
  231. !
  232. interface FastEthernet0/0
  233. no ip address
  234. duplex auto
  235. speed auto
  236. shutdown
  237. !
  238. interface FastEthernet1/0
  239. no ip address
  240. duplex auto
  241. speed auto
  242. shutdown
  243. !
  244. interface Serial2/0
  245. ip address 172.12.123.3 255.255.255.0
  246. encapsulation frame-relay
  247. frame-relay interface-dlci 301
  248. !
  249. interface Serial3/0
  250. no ip address
  251. shutdown
  252. !
  253. interface FastEthernet4/0
  254. no ip address
  255. shutdown
  256. !
  257. interface FastEthernet5/0
  258. no ip address
  259. shutdown
  260. !
  261. router rip
  262. version 2
  263. network 3.0.0.0
  264. network 172.12.0.0
  265. no auto-summary
  266. !
  267. ip classless
  268. ip route 172.12.123.2 255.255.255.255 172.12.123.1
  269. ip route 3.3.3.3 255.255.255.255 172.12.123.1
  270. !
  271. ip flow-export version 9
  272. !
  273. !
  274. !
  275. !
  276. !
  277. !
  278. !
  279. line con 0
  280. !
  281. line aux 0
  282. !
  283. line vty 0 4
  284. login
  285. !
  286. !
  287. !
  288. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement