Advertisement
Guest User

Untitled

a guest
Jun 12th, 2013
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.04 KB | None | 0 0
  1. R2_3725#sh run
  2. !
  3. aaa authentication login default local
  4. aaa authentication login AUTH-EZVPN local
  5. aaa authorization exec default local
  6. aaa authorization network AUTHOR-EZVPN local
  7. !
  8. ip vrf lan20
  9. description Traffic from VLAN20
  10. !
  11. crypto keyring Cust20-VPN vrf lan20
  12. pre-shared-key address 0.0.0.0 0.0.0.0 key Vasteras0
  13. !
  14. crypto isakmp policy 10
  15. encr 3des
  16. hash md5
  17. authentication pre-share
  18. group 2
  19. !
  20. crypto isakmp client configuration group EZVPN-GRP20
  21. key Vasteras0
  22. pool EZVPN-POOL
  23. acl EZVPN-SPLIT-ACL
  24. netmask 255.255.255.0
  25. !
  26. crypto isakmp profile CUST20-IKE-PROF
  27. vrf lan20
  28. keyring Cust20-VPN
  29. match identity group EZVPN-GRP20
  30. client authentication list AUTH-EZVPN
  31. isakmp authorization list AUTHOR-EZVPN
  32. client configuration address respond
  33. client configuration group EZVPN-GRP20
  34. !
  35. crypto ipsec transform-set EZVPN-TS esp-3des esp-md5-hmac
  36. !
  37. crypto dynamic-map EZVPN-DMAP 10
  38. set transform-set EZVPN-TS
  39. set isakmp-profile CUST20-IKE-PROF
  40. !
  41. crypto map EZVPN 10 ipsec-isakmp dynamic EZVPN-DMAP
  42. !
  43. crypto ctcp port 10001 10002 10003
  44. !
  45. interface FastEthernet0/0
  46. no ip address
  47. duplex auto
  48. speed auto
  49. !
  50. interface FastEthernet0/0.20
  51. encapsulation dot1Q 20
  52. ip vrf forwarding lan20
  53. ip address 10.100.20.250 255.255.255.0
  54. !
  55. interface FastEthernet0/1
  56. ip address X.X.X.149 255.255.255.128
  57. duplex auto
  58. speed 100
  59. crypto map EZVPN
  60. !
  61. ip local pool EZVPN-POOL 172.20.1.10 172.20.1.250
  62. ip forward-protocol nd
  63. ip route 0.0.0.0 0.0.0.0 FastEthernet0/1 X.X.X.129
  64. ip route 10.100.20.0 255.255.255.0 FastEthernet0/0.20
  65. ip route 192.168.11.0 255.255.255.0 FastEthernet0/0.1 10.100.1.1
  66. ip route vrf lan10 172.30.1.0 255.255.255.0 FastEthernet0/1 X.X.X.129
  67. ip route vrf lan20 0.0.0.0 0.0.0.0 X.X.X.129 global
  68. ip route vrf lan20 172.30.2.0 255.255.255.0 X.X.X.129 global
  69. !
  70. ip access-list extended EZVPN-SPLIT-ACL
  71. permit ip 10.100.20.0 0.0.0.255 any log
  72. permit ip 10.100.10.0 0.0.0.255 any log
  73. !
  74. radius-server host 192.168.10.10 auth-port 1645 acct-port 1646
  75. radius-server key 7 113F18160317190D177A
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement