Advertisement
Guest User

Untitled

a guest
Jun 4th, 2010
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. !
  2. version 12.4
  3. service timestamps debug datetime msec
  4. service timestamps log datetime msec
  5. service password-encryption
  6. !
  7. hostname R2
  8. !
  9. boot-start-marker
  10. boot-end-marker
  11. !
  12. !
  13. no aaa new-model
  14. no network-clock-participate slot 1
  15. no network-clock-participate wic 0
  16. ip cef
  17. !
  18. !
  19. !
  20. !
  21. no ip domain lookup
  22. ip auth-proxy max-nodata-conns 3
  23. ip admission max-nodata-conns 3
  24. !
  25. !
  26. !
  27. !
  28. !
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. !
  36. !
  37. !
  38. !
  39. !
  40. !
  41. !
  42. !
  43. ip ftp username david
  44. ip ftp password 7 105C0E1C021417
  45. !
  46. !
  47. crypto isakmp policy 50
  48. encr aes
  49. authentication pre-share
  50. group 2
  51. crypto isakmp key hello123 address 10.1.23.2 no-xauth
  52. !
  53. !
  54. crypto ipsec transform-set DEMO esp-aes esp-sha-hmac
  55. !
  56. crypto map VPN_MAP 10 ipsec-isakmp
  57. set peer 10.1.23.2
  58. set transform-set DEMO
  59. match address INT_TRAFFIC
  60. !
  61. !
  62. !
  63. !
  64. interface FastEthernet0/0
  65. description ** CONNECTION TO SW2 FA0/24 **
  66. ip address 192.168.10.1 255.255.255.0
  67. duplex auto
  68. speed auto
  69. no keepalive
  70. !
  71. interface Serial0/0
  72. description ** FR BEARER **
  73. no ip address
  74. encapsulation frame-relay
  75. !
  76. interface Serial0/0.201 point-to-point
  77. description ** FR LINK TO R1 **
  78. ip address 10.1.12.2 255.255.255.252
  79. shutdown
  80. frame-relay interface-dlci 201 CISCO
  81. !
  82. interface Serial0/0.203 point-to-point
  83. description ** FR LINK TO R3 **
  84. ip address 10.1.23.1 255.255.255.252
  85. frame-relay interface-dlci 203 CISCO
  86. crypto map VPN_MAP
  87. !
  88. interface Serial0/0.204 point-to-point
  89. description ** FR LINK TO R4 **
  90. ip address 10.1.24.1 255.255.255.252
  91. frame-relay interface-dlci 204 CISCO
  92. !
  93. interface FastEthernet0/1
  94. no ip address
  95. duplex auto
  96. speed auto
  97. !
  98. interface Serial0/1
  99. no ip address
  100. shutdown
  101. !
  102. ip forward-protocol nd
  103. !
  104. !
  105. ip http server
  106. no ip http secure-server
  107. !
  108. ip access-list extended INT_TRAFFIC
  109. permit ip 192.168.10.0 0.0.0.255 192.168.20.0 0.0.0.255
  110. !
  111. !
  112. !
  113. !
  114. control-plane
  115. !
  116. !
  117. !
  118. !
  119. !
  120. !
  121. !
  122. !
  123. !
  124. alias exec s show ip int brief
  125. !
  126. line con 0
  127. exec-timeout 0 0
  128. logging synchronous
  129. line aux 0
  130. line vty 0 4
  131. password 7 0016140303580E
  132. login
  133. !
  134. !
  135. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement