Link to home
Start Free TrialLog in
Avatar of David Schmalzer
David SchmalzerFlag for United States of America

asked on

Vpn tunnel ASA5505 help

Below is the configuration for the remote site's vpn. They are using an ASA5510 and we are using an ASA5505.  They're syntax is slightly different and I'm not familiar with it. After looking at their config, what would my settings have to be on the ASA5505 to successfully connect?

ASA5510 config:

access-list MWPH_PSS extended permit ip 128.1.0.0 255.255.0.0  192.168.109.0 255.255.255.0
access-list MWPH_PSS extended permit ip 192.168.109.0 255.255.255.0 128.1.0.0 255.255.0.0
crypto ipsec transform-set PSS esp-3des esp-sha-hmac
crypto map PSSmap  interface outside
crypto map PSSmap 1 match address MWPH_PSS
crypto map PSSmap 1 set peer 12.176.xxx.xxx
crypto map PSSmap 1 set transform-set PSS
 
 crypto isakmp policy 25
 authentication pre-share
 encryption 3des
 hash sha
 group 2
 lifetime 43200
 
tunnel-group 12.176.xxx.xxx type ipsec-l2l
tunnel-group 12.176.xxx.xxx ipsec-attributes
 pre-shared-key xxxxxx
Avatar of Markus Braun
Markus Braun
Flag of Germany image

Hi, its basically a mirror with some minor changes:

this "MWPH_PSS" ist just the name, it can be anything, or leave it as it is


access-list MWPH_PSS extended permit ip 128.1.0.0 255.255.0.0 192.168.109.0 255.255.255.0
access-list MWPH_PSS extended permit ip 192.168.109.0 255.255.255.0 128.1.0.0 255.255.0.0

one of the access-lists is not needed
their access-list is THEIR LAN IP 2 YOUR LAN IP
YOUR access-list is YOUR_LAN_IP 2 THEIR_LAN_IP

PSS ist just another name that you can leave too or change it - it just has to match on the last line of the crypto map
crypto ipsec transform-set PSS esp-3des esp-sha-hmac
crypto map PSSmap  interface outside
crypto map PSSmap 1 match address MWPH_PSS
crypto map PSSmap 1 set peer 12.176.xxx.xxx   <<<here you need to put their peer IP
crypto map PSSmap 1 set transform-set PSS   <<<<<<see comment above
 
 crypto isakmp policy 25
 authentication pre-share
 encryption 3des
 hash sha
 group 2
 lifetime 43200
 
this is THEIR tunnel group to YOU
tunnel-group 12.176.xxx.xxx type ipsec-l2l
tunnel-group 12.176.xxx.xxx ipsec-attributes
 pre-shared-key xxxxxx

you need

tunnel-group THEIR_PEER_IP type ipsec-l2l
tunnel-group THEIR_PEER_IP ipsec-attributes
 pre-shared-key AND_OF_COURSE_THE_SAME_KEY

also

you should have a NAT (inside) 0 access-l NONAT

or something similar - if not then e.g.


access-list NONAT extended permit ip 192.168.109.0 255.255.255.0 128.1.0.0 255.255.0.0 <<<<< i am assuming 192.168.109.0 is YOUR network, if not just switch the ip's around
NAT (inside) 0 access-l NONAT

inside is the default name for the well inside or LAN interface , if you named it something different then of course it

NAT (YOUR_INTERFACE) 0 access-l NONAT (WHILE NONAT again is just what i named it)

also if you have a access-l for the traffic from the LAN outgoing, you should permit that traffic too, otherwise traffic wont be passed

I hope i cleared it up a bit, if not you have to post your config so i can see what you already have

ALMOST forgot

you have to, of course match the name of your crypto map

crypto map PSSmap

if yours is not that name, you need to change it to that (PSSmap - is their name - yours can of course be the same unless you already have other tunnels then you need to use your existing name)
Avatar of David Schmalzer

ASKER

I will post my config soon as I can, but also, I don't have this option in my ASA : crypto ipsec transform-set PSS esp-3des esp-sha-hmac

at least the hmac part.
that hmac part is only in shell configs i believe, if you use the WEB Interface its not visible/choosable
I' m not sure what you mean by shell config.  Let's forget everything in the beginning. Forget the names.  Let's say we are starting from scratch. The home site has an asa5505, the remote an asa5510. The home peer is 12.176.xxx.xxx.  The remote peer is 65.210.xxx.xxx.  The home internal subnet is 192.168.109.0.  The remote internal subnet is 128.1.0.0.  Now what commands do I need to set up a successful site to site vpn connection for both sides and allow both internal subnets to see each other?
Anyone?
r u using the ASDM (WEB) or the console/seriel//ssh/telnet? (Shell)
access-list MYVPNLIST permit ip 192.168.109.0 255.255.255.0 128.1.0.0 255.255.0.0
access-list NONATLIST permit ip 192.168.109.0 255.255.255.0 128.1.0.0 255.255.0.0

nat (inside) 0 access-list NONATLIST

crypto ipsec transform-set MYCRYPT esp-3des esp-sha-hmac
crypto map outside_map 100 match address MYVPNLIST
crypto map outside_map 100 set peer 65.210.xxx.xxx
crypto map outside_map 100 set transform-set MYCRYPT
crypto map outside_map interface outside
crypto isakmp identity hostname
crypto isakmp enable outside


THIS SHOULD BE DEFAULT - SO ITS ALREADY CONFIGURED
crypto isakmp policy 65535
 authentication pre-share
 encryption 3des
 hash sha
 group 2

nat (inside) 0 access-list NONATLIST

the name "inside" is the name of the interface your LAN is on, so if you called it something else, you have to replace the "inside" with whatever you called it (its that "nameif xxxxxxx" line on VLAN 1 (usually))




for the other side, just switch the IP's in that access-list and change the peer

e.g.
access-list MYVPNLIST permit ip  128.1.0.0 255.255.0.0 192.168.109.0 255.255.255.0
access-list NONATLIST permit ip 128.1.0.0 255.255.0.0 192.168.109.0 255.255.255.0

nat (inside) 0 access-list NONATLIST

crypto ipsec transform-set MYCRYPT esp-3des esp-sha-hmac
crypto map outside_map 100 match address MYVPNLIST
crypto map outside_map 100 set peer 12.176.xxx.xxx
crypto map outside_map 100 set transform-set MYCRYPT
crypto map outside_map interface outside
crypto isakmp identity hostname
crypto isakmp enable outside
ASKER CERTIFIED SOLUTION
Avatar of Markus Braun
Markus Braun
Flag of Germany image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
and of course the tunnel groups for your peers
tunnel-group 12.176.xxx.xxx type ipsec-l2l
tunnel-group 12.176.xxx.xxx ipsec-attributes
 pre-shared-key xxxxxx

always the other peer of course not yourself
The tunnel is up. Thank you.