Link to home
Start Free TrialLog in
Avatar of chezbrgrs
chezbrgrsFlag for United States of America

asked on

Cannot Use VPN Client to Establish IPSec Tunnel Outside Network

Hello Experts -
It's me again.  I got my PIX setup thanks to you but now I can't use the VPN client to connect to a client outside my network.  I have isakmp nat-traversal 20 setup but it's not allowing the VPN traffic.  What do I need to do?  Here's my config...

PIX Version 6.3(5)
interface ethernet0 auto
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
enable password Fd2kjuwTlagiu7qU encrypted
passwd Fd2kjuwTlagiu7qU encrypted
hostname pixfirewall
domain-name mycompany.com
fixup protocol dns maximum-length 512
fixup protocol ftp 21
fixup protocol h323 h225 1720
fixup protocol h323 ras 1718-1719
fixup protocol http 80
fixup protocol rsh 514
fixup protocol rtsp 554
fixup protocol sip 5060
fixup protocol sip udp 5060
fixup protocol skinny 2000
fixup protocol smtp 25
fixup protocol sqlnet 1521
fixup protocol tftp 69
names        
access-list Remote_Users_splitTunnelAcl permit ip 192.168.32.0 255.255.255.0 192.168.24.0 255.255.255.0
access-list inside_outbound_nat0_acl permit ip 192.168.32.0 255.255.255.0 192.168.24.0 255.255.255.0
access-list outside_cryptomap_dyn_20 permit ip any 192.168.24.0 255.255.255.0
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside dhcp setroute
ip address inside 192.168.32.1 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
ip local pool Remote_DHCP 192.168.24.11-192.168.24.40
no pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 0 access-list inside_outbound_nat0_acl
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
timeout xlate 3:00:00
timeout conn 1:00:00 half-closed 0:10:00 udp 0:02:00 rpc 0:10:00 h225 1:00:00
timeout h323 0:05:00 mgcp 0:05:00 sip 0:30:00 sip_media 0:02:00
timeout sip-disconnect 0:02:00 sip-invite 0:03:00
timeout uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server TACACS+ max-failed-attempts 3
aaa-server TACACS+ deadtime 10
aaa-server RADIUS protocol radius
aaa-server RADIUS max-failed-attempts 3
aaa-server RADIUS deadtime 10
aaa-server LOCAL protocol local
http server enable
http 192.168.32.0 255.255.255.0 inside
no snmp-server location
no snmp-server contact
snmp-server community public
no snmp-server enable traps
floodguard enable
sysopt connection permit-ipsec
crypto ipsec transform-set ESP-3DES-MD5 esp-3des esp-md5-hmac
crypto dynamic-map outside_dyn_map 20 match address outside_cryptomap_dyn_20
crypto dynamic-map outside_dyn_map 20 set transform-set ESP-3DES-MD5
crypto map outside_map 65535 ipsec-isakmp dynamic outside_dyn_map
crypto map outside_map interface outside
isakmp enable outside
isakmp identity address
isakmp nat-traversal 20
isakmp policy 20 authentication pre-share
isakmp policy 20 encryption 3des
isakmp policy 20 hash md5
isakmp policy 20 group 2
isakmp policy 20 lifetime 86400
vpngroup Remote_Users address-pool Remote_DHCP
vpngroup Remote_Users dns-server 68.87.72.130 68.87.77.130
vpngroup Remote_Users split-tunnel Remote_Users_splitTunnelAcl
vpngroup Remote_Users idle-time 1800
vpngroup Remote_Users password ********
telnet timeout 5
ssh 192.168.32.0 255.255.255.0 inside
ssh timeout 60
console timeout 0
dhcpd address 192.168.32.11-192.168.32.40 inside
dhcpd dns 68.87.72.130 68.87.77.130
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd enable inside
username username password 9k0WvCzRDylvQEpn encrypted privilege 15
terminal width 80

Thanks for everything.
chezbrgrs
Avatar of Alan Huseyin Kayahan
Alan Huseyin Kayahan
Flag of Sweden image

 Hi chezbrgrs
   You need this
   fixup protocol pptp 1723
   If you upgrade the IOS to 7.0, it will be used as inspections

Regards
Are you trying to use IPSEC or PPTP, as MrHusy alludes to?
Avatar of chezbrgrs

ASKER

I'm using UDP/IPSEC.  I thought enabling isakmp nat-traversal would take care of all port issues
What type of VPN device are you trying to connect to on the outside?  Does it support using IPSEC over TCP?  I've seen some environments where UDP doesn't work but TCP does.  I've also seen the reverse.  If the other end supports TCP, try that and see what you get.
It's a PIX 515.  It works fine when I'm not behind my own PIX.
did fixup work? if didnt try this
access-list outside_access_in permit gre any any
access-group outside_access_in in interface outside
Is that fixup for IPSEC tunnels as well?  I thought batry_boy implied it was only for PPTP.
The fixup is only for PPTP tunnels being initiated from inside the PIX outbound to an external PPTP server.  MrHusy's suggestion of allowing inbound GRE traffic is to allow PPTP traffic initiated externally to come inbound.
After looking around on the web, does the isakmp traversal need to be setup on the endpoint VPN.  It's setup on mine but I'm not sure about the other one.
"MrHusy's suggestion of allowing inbound GRE traffic is to allow PPTP traffic initiated externally to come inbound."

yep batry you re correct, I misunderstood, ignore it.
ASKER CERTIFIED SOLUTION
Avatar of batry_boy
batry_boy
Flag of United States of America 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
I took a look at the remote PIX configuartion.  It's running 6.1 and isakmp nat-traversal was not introduced until 6.3.  I can't upgrade it now so do I have any alternatives to using nat-traversal?
Thanks batry_boy.  I upgraded to 6.3(5) and issued the isakmp nat-traversal command.  It's now working...thanks for your persistance.

chezbrgrs
Good deal...glad to help.