Advertisement
Guest User

R5 configuration

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