Advertisement
Guest User

R2: sh run

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