Advertisement
Daravae

Config

Sep 10th, 2023
156
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.43 KB | None | 0 0
  1. R3#sh running-config
  2. Building configuration...
  3.  
  4. Current configuration : 973 bytes
  5. !
  6. version 12.4
  7. no service timestamps log datetime msec
  8. no service timestamps debug datetime msec
  9. no service password-encryption
  10. !
  11. hostname R3
  12. !
  13. !
  14. !
  15. enable secret 5 $1$mERr$NJdjwh5wX8Ia/X8aC4RIu.
  16. !
  17. !
  18. !
  19. !
  20. !
  21. !
  22. no ip cef
  23. no ipv6 cef
  24. !
  25. !
  26. !
  27. !
  28. !
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. !
  36. spanning-tree mode pvst
  37. !
  38. !
  39. !
  40. !
  41. !
  42. !
  43. interface Loopback10
  44. ip address 10.10.10.3 255.255.255.128
  45. !
  46. interface Loopback20
  47. ip address 10.20.20.3 255.255.255.240
  48. !
  49. interface Loopback30
  50. ip address 10.30.30.3 255.255.255.248
  51. !
  52. interface FastEthernet0/0
  53. no ip address
  54. duplex auto
  55. speed auto
  56. shutdown
  57. !
  58. interface FastEthernet0/1
  59. no ip address
  60. duplex auto
  61. speed auto
  62. shutdown
  63. !
  64. interface Serial0/1/0
  65. ip address 172.16.1.2 255.255.255.192
  66. !
  67. interface Serial0/1/1
  68. no ip address
  69. clock rate 2000000
  70. shutdown
  71. !
  72. interface Vlan1
  73. no ip address
  74. shutdown
  75. !
  76. ip classless
  77. ip route 0.0.0.0 0.0.0.0 Serial0/1/0
  78. !
  79. ip flow-export version 9
  80. !
  81. !
  82. !
  83. !
  84. !
  85. !
  86. !
  87. !
  88. line con 0
  89. !
  90. line aux 0
  91. !
  92. line vty 0 4
  93. password CISCO
  94. login
  95. !
  96. !
  97. !
  98. end
  99.  
  100. ____________________________________________________________________________________
  101.  
  102. R1#sh running-config
  103. Building configuration...
  104.  
  105. Current configuration : 1068 bytes
  106. !
  107. version 12.4
  108. no service timestamps log datetime msec
  109. no service timestamps debug datetime msec
  110. no service password-encryption
  111. !
  112. hostname R1
  113. !
  114. !
  115. !
  116. enable secret 5 $1$mERr$NJdjwh5wX8Ia/X8aC4RIu.
  117. !
  118. !
  119. !
  120. !
  121. !
  122. !
  123. no ip cef
  124. no ipv6 cef
  125. !
  126. !
  127. !
  128. !
  129. !
  130. !
  131. !
  132. !
  133. !
  134. !
  135. !
  136. !
  137. spanning-tree mode pvst
  138. !
  139. !
  140. !
  141. !
  142. !
  143. !
  144. interface FastEthernet0/0
  145. no ip address
  146. duplex auto
  147. speed auto
  148. shutdown
  149. !
  150. interface FastEthernet0/1
  151. no ip address
  152. duplex auto
  153. speed auto
  154. shutdown
  155. !
  156. interface Serial0/1/0
  157. ip address 172.16.1.1 255.255.255.192
  158. ip access-group 150 in
  159. clock rate 800000
  160. !
  161. interface Serial0/1/1
  162. no ip address
  163. clock rate 2000000
  164. shutdown
  165. !
  166. interface Vlan1
  167. no ip address
  168. shutdown
  169. !
  170. ip classless
  171. ip route 0.0.0.0 0.0.0.0 Serial0/1/0
  172. !
  173. ip flow-export version 9
  174. !
  175. !
  176. access-list 150 permit tcp 10.10.10.0 0.0.0.127 any eq telnet
  177. access-list 150 permit tcp 10.30.30.0 0.0.0.7 any eq telnet
  178. access-list 150 deny tcp 10.20.20.0 0.0.0.15 any eq telnet
  179. access-list 150 permit icmp 10.20.20.0 0.0.0.15 any echo
  180. !
  181. !
  182. !
  183. !
  184. !
  185. !
  186. line con 0
  187. !
  188. line aux 0
  189. !
  190. line vty 0 4
  191. password CISCO
  192. login
  193. !
  194. !
  195. !
  196. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement