Advertisement
Guest User

IPsec VPN Settings for Cisco 870

a guest
Sep 20th, 2011
997
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. crypto isakmp policy 1
  2. encr 3des
  3. authentication pre-share
  4. group 2
  5. crypto isakmp key thisismysharedsecret address [[UntangleExternalWanIP]]
  6. crypto isakmp keepalive 10 periodic
  7. crypto isakmp nat keepalive 10
  8. !
  9. !
  10. crypto ipsec transform-set MyTransFormSetName esp-3des esp-sha-hmac
  11. !
  12. crypto ipsec profile MyIPSECProfileName
  13. set transform-set MyTransFormSetName
  14. !
  15. !
  16. crypto map MyCRMapName 1 ipsec-isakmp
  17. description Tunnel To Untangle
  18. set peer [[UntangleExternalWanIP]]
  19. set security-association lifetime seconds 28800
  20. set transform-set MyTransFormSetName
  21. match address 118
  22. !
  23. interface FastEthernet4
  24. description MyCiscoWANIP
  25. ip address [[CiscoExternalWANIP]] [[Subnet]]
  26. ip nat outside
  27. ip virtual-reassembly
  28. duplex auto
  29. speed auto
  30. crypto map MyCRMapName
  31. !
  32. interface Vlan1
  33. description CiscoLAN
  34. ip address [[CiscoLAN]] [[subnet]]
  35. ip nat inside
  36. ip virtual-reassembly
  37. ip tcp adjust-mss 1452
  38. !
  39. access-list 118 permit ip [[CiscoLAN]] [[subnet]] [[UntangleLAN]] [[subnet]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement