Here's what I used to get mine up and working:
http://www.cisco.com/en/US
Main Topics
Browse All TopicsI currently have two CISCO ASA devices both setup to allow local Internet access and Remote Access. Now I would like to add a site to site vpn tunnel between the two ASA devices and have tried multiple attempts to add the site to site with no success. The code attached is base without any site to site configuration (just base configuration w/ Remote VPN Access).
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Here's what I used to get mine up and working:
http://www.cisco.com/en/US
Same on both ends doesn't look like its up. What else should we try
..........................
Result of the command: "show isakmp"
There are no isakmp sas
Global IKE Statistics
Active Tunnels: 0
Previous Tunnels: 0
In Octets: 0
In Packets: 0
In Drop Packets: 0
In Notifys: 0
In P2 Exchanges: 0
In P2 Exchange Invalids: 0
In P2 Exchange Rejects: 0
In P2 Sa Delete Requests: 0
Out Octets: 0
Out Packets: 0
Out Drop Packets: 0
Out Notifys: 0
Out P2 Exchanges: 0
Out P2 Exchange Invalids: 0
Out P2 Exchange Rejects: 0
Out P2 Sa Delete Requests: 0
Initiator Tunnels: 0
Initiator Fails: 0
Responder Fails: 0
System Capacity Fails: 0
Auth Fails: 0
Decrypt Fails: 0
Hash Valid Fails: 0
No Sa Fails: 0
Global IPSec over TCP Statistics
--------------------------
Embryonic connections: 0
Active connections: 0
Previous connections: 0
Inbound packets: 0
Inbound dropped packets: 0
Outbound packets: 0
Outbound dropped packets: 0
RST packets: 0
Recevied ACK heart-beat packets: 0
Bad headers: 0
Bad trailers: 0
Timer failures: 0
Checksum errors: 0
Internal errors: 0
It looks like the tunnel is not comming up... you should see something like this (example fro my ASA) in place of "ther is no isakmp sas"
dc-asa-vpn# show isakmp
Active SA: 6
Rekey SA: 0 (A tunnel will report 1 Active and 1 Rekey SA during rekey)
Total IKE SA: 6
1 IKE Peer: xxx.xxx.xxx.xxx
Type : L2L Role : responder
Rekey : no State : MM_ACTIVE
2 IKE Peer: xxx.xxx.xxx.xxx
Type : L2L Role : responder
Rekey : no State : MM_ACTIVE
A couple things...
1) can you ping the opposite peer address from either ot both ASA?
2) while trying to bring up the tunnel run a debug to gather more info on what's happening...
"debug crypto isakmp 150"
You can only have one crypto map bound to the interface so you need to add the site to site policy to the "mymap" map.
no crypto map outside_map1 1 match address SITEB_vpn
no crypto map outside_map1 1 set peer 66.211.240.142
no crypto map outside_map1 1 set transform-set ESP-3DES-SHA
crypto map mymap 1 match address SITEB_vpn
crypto map mymap 1 set peer 66.211.240.142
crypto map mymap 1 set transform-set ESP-3DES-SHA
On SiteB:
no crypto map outside_map1 1 match address SITEA_vpn
no crypto map outside_map1 1 set peer 66.211.240.90
no crypto map outside_map1 1 set transform-set ESP-3DES-SHA
crypto map mymap 1 match address SITEA_vpn
crypto map mymap 1 set peer 66.211.240.90
crypto map mymap 1 set transform-set ESP-3DES-SHA
Looks like you mistyped the crypto map name on SiteB:
You have this:
crypto map myap 1 match address SITEA_vpn
crypto map myap 1 set peer 66.211.240.90
crypto map myap 1 set transform-set ESP-3DES-SHA
Should be:
crypto map mymap 1 match address SITEA_vpn
crypto map mymap 1 set peer 66.211.240.90
crypto map mymap 1 set transform-set ESP-3DES-SHA
Business Accounts
Answer for Membership
by: touellette83Posted on 2009-06-04 at 11:11:00ID: 24549700
Add the Following to your ASA's for the VPN...
-Tim
Select allOpen in new window