Advertisement
Guest User

MainRT

a guest
May 25th, 2013
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.29 KB | None | 0 0
  1. version 12.4
  2. service timestamps debug datetime msec
  3. service timestamps log datetime msec
  4. no service password-encryption
  5. !
  6. hostname MainRT
  7. !
  8. boot-start-marker
  9. boot-end-marker
  10. !
  11. !
  12. no aaa new-model
  13. memory-size iomem 5
  14. ip cef
  15. !
  16. !
  17. !
  18. !
  19. no ip domain lookup
  20. ip domain name lab.local
  21. !
  22. multilink bundle-name authenticated
  23. !
  24. !
  25. !
  26. !
  27. !
  28. !
  29. !
  30. !
  31. !
  32. !
  33. !
  34. !
  35. !
  36. !
  37. !
  38. !
  39. !
  40. !
  41. !
  42. !
  43. !
  44. archive
  45. log config
  46. hidekeys
  47. !
  48. !
  49. crypto isakmp policy 10
  50. encr aes
  51. authentication pre-share
  52. group 5
  53. crypto isakmp key testkey address 87.55.43.2 255.255.255.248
  54. crypto isakmp key testkey address 87.55.42.1 255.255.255.248
  55. !
  56. !
  57. crypto ipsec transform-set AES128-SHA esp-aes esp-sha-hmac
  58. !
  59. crypto ipsec profile IPSECPROFILE10
  60. set transform-set AES128-SHA
  61. !
  62. !
  63. !
  64. !
  65. !
  66. class-map type inspect match-any OUTSIDE-INSIDE-CLASS
  67. match access-group 110
  68. match protocol http
  69. match protocol https
  70. match protocol smtp
  71. class-map type inspect match-any INSIDE-OUTSIDE-CLASS
  72. match protocol smtp
  73. match protocol https
  74. match protocol http
  75. match protocol dns
  76. !
  77. !
  78. policy-map type inspect OUTSIDE-INSIDE-POLICY
  79. class type inspect OUTSIDE-INSIDE-CLASS
  80. pass
  81. class class-default
  82. policy-map type inspect INSIDE-OUTSIDE-POLICY
  83. class type inspect INSIDE-OUTSIDE-CLASS
  84. pass
  85. class class-default
  86. !
  87. zone security OUTSIDE
  88. zone security INSIDE
  89. zone-pair security OUTSIDE-INSIDE-PAIR source OUTSIDE destination INSIDE
  90. zone-pair security INSIDE-OUTSIDE-PAIR source INSIDE destination OUTSIDE
  91. !
  92. !
  93. !
  94. !
  95. interface Tunnel1
  96. ip address 10.10.10.1 255.255.255.0
  97. no ip redirects
  98. ip nhrp authentication nhrp1
  99. ip nhrp map multicast dynamic
  100. ip nhrp network-id 1
  101. zone-member security INSIDE
  102. ip ospf network broadcast
  103. ip ospf cost 10
  104. ip ospf priority 200
  105. ip ospf 1 area 0
  106. tunnel source FastEthernet0/0
  107. tunnel mode gre multipoint
  108. tunnel key 1
  109. tunnel protection ipsec profile IPSECPROFILE10
  110. !
  111. interface Tunnel2
  112. ip address 11.11.11.1 255.255.255.0
  113. no ip redirects
  114. ip nhrp authentication nhrp2
  115. ip nhrp map multicast dynamic
  116. ip nhrp network-id 2
  117. zone-member security INSIDE
  118. ip ospf network broadcast
  119. ip ospf cost 20
  120. ip ospf priority 200
  121. ip ospf 1 area 0
  122. tunnel source FastEthernet0/1
  123. tunnel mode gre multipoint
  124. tunnel key 2
  125. tunnel protection ipsec profile IPSECPROFILE10
  126. !
  127. interface FastEthernet0/0
  128. ip address 87.55.45.1 255.255.255.248
  129. zone-member security OUTSIDE
  130. duplex auto
  131. speed auto
  132. !
  133. interface FastEthernet0/1
  134. ip address 87.55.44.1 255.255.255.248
  135. zone-member security OUTSIDE
  136. duplex auto
  137. speed auto
  138. !
  139. interface FastEthernet1/0
  140. ip address 192.168.2.254 255.255.255.0
  141. zone-member security INSIDE
  142. ip ospf 1 area 0
  143. duplex auto
  144. speed auto
  145. !
  146. router ospf 1
  147. log-adjacency-changes
  148. !
  149. ip forward-protocol nd
  150. ip route 0.0.0.0 0.0.0.0 87.55.45.6 10
  151. ip route 0.0.0.0 0.0.0.0 87.55.44.6 20
  152. !
  153. !
  154. no ip http server
  155. no ip http secure-server
  156. !
  157. access-list 100 permit ip 192.168.2.0 0.0.0.255 any
  158. access-list 110 permit ip any 192.168.2.0 0.0.0.255
  159. access-list 110 permit ip any 87.55.43.0 0.0.0.7
  160. !
  161. !
  162. !
  163. !
  164. !
  165. !
  166. control-plane
  167. !
  168. !
  169. !
  170. !
  171. !
  172. !
  173. !
  174. !
  175. !
  176. !
  177. line con 0
  178. exec-timeout 0 0
  179. privilege level 15
  180. logging synchronous
  181. line aux 0
  182. exec-timeout 0 0
  183. privilege level 15
  184. logging synchronous
  185. line vty 0 4
  186. login
  187. !
  188. ntp server 87.55.45.6
  189. !
  190. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement