Guest User

Untitled

a guest
Oct 28th, 2012
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.00 KB | None | 0 0
  1. <--R1-->
  2. !
  3. hostname ENTERPRISE_FOS
  4. !
  5. ip cef
  6. !
  7. interface Loopback0
  8. ip address 3.3.3.3 255.255.255.255
  9. !
  10. interface FastEthernet0/0
  11. no ip address
  12. shutdown
  13. duplex auto
  14. speed auto
  15. !
  16. interface Serial0/0
  17. ip address 192.168.1.2 255.255.255.252
  18. clock rate 2000000
  19. !
  20. interface FastEthernet0/1
  21. no ip address
  22. shutdown
  23. duplex auto
  24. speed auto
  25. !
  26. interface Serial0/1
  27. no ip address
  28. shutdown
  29. clock rate 2000000
  30. !
  31. router eigrp 65001
  32. network 3.3.3.3 0.0.0.0
  33. network 192.168.1.2 0.0.0.0
  34. auto-summary
  35. !
  36. router bgp 65001
  37. no synchronization
  38. bgp log-neighbor-changes
  39. neighbor 1.1.1.1 remote-as 65001
  40. neighbor 1.1.1.1 update-source Loopback0
  41. no auto-summary
  42.  
  43. <--R2-->
  44. !
  45. hostname EDGE-ROUTER
  46. !
  47. ip cef
  48. !
  49. interface Loopback0
  50. ip address 1.1.1.1 255.255.255.255
  51. !
  52. interface Loopback1
  53. ip address 192.168.100.1 255.255.255.0
  54. !
  55. interface Loopback2
  56. ip address 192.168.200.1 255.255.255.0
  57. !
  58. interface Loopback3
  59. ip address 192.168.150.1 255.255.255.0
  60. !
  61. interface FastEthernet0/0
  62. no ip address
  63. shutdown
  64. duplex auto
  65. speed auto
  66. !
  67. interface Serial0/0
  68. ip address 192.168.1.1 255.255.255.252
  69. clock rate 2000000
  70. !
  71. interface FastEthernet0/1
  72. no ip address
  73. shutdown
  74. duplex auto
  75. speed auto
  76. !
  77. interface Serial0/1
  78. ip address 20.0.0.1 255.255.255.252
  79. clock rate 2000000
  80. !
  81. router eigrp 65001
  82. network 1.1.1.1 0.0.0.0
  83. network 192.168.1.1 0.0.0.0
  84. network 192.168.100.1 0.0.0.0
  85. network 192.168.150.1 0.0.0.0
  86. network 192.168.200.1 0.0.0.0
  87. auto-summary
  88. !
  89. router bgp 65001
  90. no synchronization
  91. bgp log-neighbor-changes
  92. neighbor 2.2.2.2 remote-as 65000
  93. neighbor 2.2.2.2 ebgp-multihop 255
  94. neighbor 2.2.2.2 update-source Loopback0
  95. neighbor 3.3.3.3 remote-as 65001
  96. neighbor 3.3.3.3 update-source Loopback0
  97. neighbor 3.3.3.3 next-hop-self
  98. no auto-summary
  99. !
  100. ip forward-protocol nd
  101. ip route 2.2.2.2 255.255.255.255 Serial0/1
  102. !
  103.  
  104. <--R3-->
  105. !
  106. hostname ISP
  107. !
  108. ip cef
  109. !
  110. interface Loopback0
  111. ip address 2.2.2.2 255.255.255.255
  112. !
  113. interface Loopback1
  114. ip address 30.0.0.1 255.255.255.0
  115. !
  116. interface Loopback2
  117. ip address 40.0.0.1 255.255.255.0
  118. !
  119. interface Loopback3
  120. ip address 50.0.0.1 255.255.255.0
  121. !
  122. interface Loopback4
  123. ip address 60.0.0.1 255.255.255.0
  124. !
  125. interface FastEthernet0/0
  126. no ip address
  127. shutdown
  128. duplex auto
  129. speed auto
  130. !
  131. interface Serial0/0
  132. ip address 20.0.0.2 255.255.255.252
  133. clock rate 2000000
  134. !
  135. interface FastEthernet0/1
  136. no ip address
  137. shutdown
  138. duplex auto
  139. speed auto
  140. !
  141. interface Serial0/1
  142. no ip address
  143. shutdown
  144. clock rate 2000000
  145. !
  146. router bgp 65000
  147. no synchronization
  148. bgp log-neighbor-changes
  149. network 30.0.0.0
  150. network 40.0.0.0
  151. network 50.0.0.0
  152. network 60.0.0.0
  153. neighbor 1.1.1.1 remote-as 65001
  154. neighbor 1.1.1.1 ebgp-multihop 255
  155. neighbor 1.1.1.1 update-source Loopback0
  156. no auto-summary
  157. !
  158. ip forward-protocol nd
  159. ip route 1.1.1.1 255.255.255.255 Serial0/0
  160. ip route 30.0.0.0 255.0.0.0 Null0
  161. ip route 40.0.0.0 255.0.0.0 Null0
  162. ip route 50.0.0.0 255.0.0.0 Null0
  163. ip route 60.0.0.0 255.0.0.0 Null0
  164. !
  165. :)
Advertisement
Add Comment
Please, Sign In to add comment