Difference between revisions of "VPN using crypto map"
From Tech-Wiki
(Created page with "VPN Using crypto map R1(config)# crypto isakmp policy 1 R1(config-isakmp)# encr 3des R1(config-isakmp)# hash md5 R1(config-isakmp)# authentication pre-share R1(config-isa...") |
|||
Line 1: | Line 1: | ||
+ | [[Category:Cisco Systems]] | ||
VPN Using crypto map | VPN Using crypto map | ||
R1(config)# crypto isakmp policy 1 | R1(config)# crypto isakmp policy 1 |
Latest revision as of 16:34, 13 July 2016
VPN Using crypto map
R1(config)# crypto isakmp policy 1 R1(config-isakmp)# encr 3des R1(config-isakmp)# hash md5 R1(config-isakmp)# authentication pre-share R1(config-isakmp)# group 2 R1(config-isakmp)# lifetime 86400
R1(config)# crypto isakmp key firewallcx address 1.1.1.1 R1(config)# ip access-list extended VPN-TRAFFIC R1(config-ext-nacl)# permit ip 20.20.20.0 0.0.0.255 10.10.10.0 0.0.0.255 R1(config)# crypto ipsec transform-set TS esp-3des esp-md5-hmac R1(config)# crypto map CMAP 10 ipsec-isakmp R1(config-crypto-map)# set peer 1.1.1.1 R1(config-crypto-map)# set transform-set TS R1(config-crypto-map)# match address VPN-TRAFFIC
R1(config)# interface FastEthernet0/1 R1(config- if)# crypto map CMAP