Advertisement
Guest User

R6 configuration

a guest
Jan 12th, 2022
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. !
  2. !
  3.  
  4. !
  5. version 12.4
  6. service timestamps debug datetime msec
  7. service timestamps log datetime msec
  8. no service password-encryption
  9. !
  10. hostname R6
  11. !
  12. boot-start-marker
  13. boot-end-marker
  14. !
  15. !
  16. no aaa new-model
  17. memory-size iomem 5
  18. no ip icmp rate-limit unreachable
  19. !
  20. !
  21. ip cef
  22. no ip domain lookup
  23. !
  24. !
  25. !
  26. !
  27. !
  28. !
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. !
  36. !
  37. !
  38. !
  39. !
  40. !
  41. !
  42. ip tcp synwait-time 5
  43. !
  44. !
  45. bridge irb
  46. !
  47. !
  48. !
  49. interface FastEthernet0/0
  50. no ip address
  51. duplex auto
  52. speed auto
  53. bridge-group 1
  54. !
  55. interface FastEthernet0/1
  56. no ip address
  57. duplex auto
  58. speed auto
  59. bridge-group 1
  60. !
  61. interface FastEthernet1/0
  62. no ip address
  63. duplex auto
  64. speed auto
  65. bridge-group 2
  66. !
  67. interface FastEthernet2/0
  68. no ip address
  69. duplex auto
  70. speed auto
  71. bridge-group 2
  72. !
  73. interface FastEthernet3/0
  74. no ip address
  75. shutdown
  76. duplex auto
  77. speed auto
  78. !
  79. interface FastEthernet4/0
  80. no ip address
  81. shutdown
  82. duplex auto
  83. speed auto
  84. !
  85. interface FastEthernet5/0
  86. no ip address
  87. shutdown
  88. duplex auto
  89. speed auto
  90. !
  91. interface Serial6/0
  92. no ip address
  93. shutdown
  94. serial restart-delay 0
  95. !
  96. interface Serial6/1
  97. no ip address
  98. shutdown
  99. serial restart-delay 0
  100. !
  101. interface Serial6/2
  102. no ip address
  103. shutdown
  104. serial restart-delay 0
  105. !
  106. interface Serial6/3
  107. no ip address
  108. shutdown
  109. serial restart-delay 0
  110. !
  111. interface BVI1
  112. ip address 172.11.255.3 255.255.0.0
  113. ip nat outside
  114. ip virtual-reassembly
  115. standby 10 ip 172.11.255.1
  116. standby 10 priority 90
  117. standby 10 preempt
  118. !
  119. interface BVI2
  120. ip address 192.168.11.252 255.255.255.0
  121. ip nat inside
  122. ip virtual-reassembly
  123. standby 5 ip 192.168.11.254
  124. standby 5 priority 90
  125. standby 5 preempt
  126. standby 5 name HSRP2
  127. !
  128. no ip http server
  129. no ip http secure-server
  130. ip forward-protocol nd
  131. !
  132. !
  133. ip nat Stateful id 1
  134. redundancy HSRP2
  135. mapping-id 100
  136. protocol udp
  137. ip nat pool cluster 192.168.11.1 192.168.11.3 prefix-length 24 type rotary
  138. ip nat inside destination list CLUSTERCONNECTIONS pool cluster mapping-id 100
  139. !
  140. !
  141. ip access-list extended CLUSTERCONNECTIONS
  142. permit tcp any host 172.11.255.1 eq www
  143. !
  144. !
  145. !
  146. !
  147. control-plane
  148. !
  149. bridge 1 protocol ieee
  150. bridge 1 route ip
  151. bridge 2 protocol ieee
  152. bridge 2 route ip
  153. !
  154. !
  155. !
  156. !
  157. !
  158. !
  159. !
  160. !
  161. line con 0
  162. exec-timeout 0 0
  163. privilege level 15
  164. logging synchronous
  165. line aux 0
  166. exec-timeout 0 0
  167. privilege level 15
  168. logging synchronous
  169. line vty 0 4
  170. login
  171. !
  172. !
  173. end
  174.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement