Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Rhinorhino on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

CIsco PIX -Linksys BEFSX41 tunnel

Status
Not open for further replies.

ilo

MIS
Joined
Jul 25, 2002
Messages
3
Location
US
Hello
I'm trying to setup a VPN tunnel between a PIX515 and a Linksys BEFSX41. I set the Linksys with the correct info in the VPN windows (3des-md5), and added the following PIX setup
crypto ipsec transform-set chiset2 esp-3des esp-md5-hmac
crypto map chimap 20 ipsec-isakmp
crypto map chimap 20 match address my-tunnel
crypto map chimap 20 set pfs group2
crypto map chimap 20 set peer xx.xx.xx.xx
crypto map chimap 20 set transform-set chiset2
crypto map chimap interface outside
isakmp enable outside
isakmp key ******** address xx.xx.xx.xx netmask 255.255.255.255
isakmp identity address
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

when i trace the PIX logs I see the following log.Any help with a working setup is welcome.

Ileana
ISAKMP (0): Checking ISAKMP transform 1 against priority 20 policy
ISAKMP: encryption 3DES-CBC
ISAKMP: hash MD5
ISAKMP: auth pre-share
ISAKMP: default group 2
ISAKMP: life type in seconds
ISAKMP: life duration (VPI) of 0x0 0x1 0x51 0x80
ISAKMP (0): atts are acceptable. Next payload is 3
ISAKMP (0): SA is doing pre-shared key authentication using id type ID_IPV4_ADDR
return status is IKMP_NO_ERROR
crypto_isakmp_process_block:src:68.209.99.63, dest:216.148.58.253 spt:500 dpt:500
return status is IKMP_NO_ERR_NO_TRANS
ISAKMP (0): retransmitting phase 1 (0)...
crypto_isakmp_process_block:src:68.209.99.63, dest:216.148.58.253 spt:500 dpt:500
return status is IKMP_NO_ERR_NO_TRAN

and at the end

ISADB: reaper checking SA 0x11b552c, conn_id = 0 DELETE IT!

VPN Peer:ISAKMP: Peer Info for xx.xx.xx.xx/500 not found - peers:9

 
do you have a my-tunnel Access list? this is what allows the traffic to pass?

Can you post the entire sanitized config from the pix

Thanks

Mark Spencer
 
MArk here is the complete setup..i have the same problem
SAKMP (0): atts are acceptable. Next payload is 3
ISAKMP (0): SA is doing pre-shared key authentication using id type ID_IPV4_ADDR
return status is IKMP_NO_ERROR
ISAKMP (0): retransmitting phase 1 (0)...
ISAKMP (0): retransmitting phase 1 (1)...
ISAKMP (0): deleting SA: src 68.209.99.63, dst 65.13.50.135
ISADB: reaper checking SA 0xf94efc, conn_id = 0 DELETE IT!

VPN Peer:ISAKMP: Peer Info for 68.209.99.63/500 not found - peers:0




PIX Version 6.3(3)
interface ethernet0 100full
interface ethernet1 100full
nameif ethernet0 outside security0
nameif ethernet1 inside security100
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 ileana-tunnel permit ip 192.168.1.0 255.255.255.0 172.25.50.0 255.255.255.0
access-list ileana-tunnel permit ip 172.25.50.0 255.255.255.0 192.168.1.0 255.255.255.0
pager lines 24
mtu outside 1500
mtu inside 1500
ip address outside xx.xx.xx.xx 255.255.255.0 pppoe
ip address inside xx.xx.xx.xx 255.255.255.0
ip audit info action alarm
ip audit attack action alarm
pdm logging informational 100
pdm history enable
arp timeout 14400
global (outside) 1 interface
nat (inside) 1 0.0.0.0 0.0.0.0 0 0
route outside 0.0.0.0 0.0.0.0 65.14.252.6 1
timeout xlate 0:05: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 uauth 0:05:00 absolute
aaa-server TACACS+ protocol tacacs+
aaa-server RADIUS protocol radius
aaa-server LOCAL protocol local
http server enable
http 172.25.50.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
sysopt connection permit-pptp
auth-prompt prompt *****REDIENT*******
crypto ipsec transform-set chiset2 esp-3des esp-md5-hmac
crypto map chimap 20 ipsec-isakmp
crypto map chimap 20 match address ileana-tunnel
crypto map chimap 20 set pfs group2
crypto map chimap 20 set peer 68.209.99.63
crypto map chimap 20 set transform-set chiset2
crypto map chimap interface outside
isakmp enable outside
isakmp key ******** address xx.xx.xx.xx netmask 255.255.255.255
isakmp identity address
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
telnet timeout 60
ssh 0.0.0.0 0.0.0.0 outside
ssh timeout 60
console timeout 0
vpdn group pppoe_group request dialout pppoe
vpdn group pppoe_group localname xx@xx.net
vpdn group pppoe_group ppp authentication pap
vpdn username xx@xx.net password ********
dhcpd address 172.25.50.100-172.25.50.254 inside
dhcpd dns xx.xx.xx.xx
dhcpd lease 3600
dhcpd ping_timeout 750
dhcpd auto_config outside
dhcpd enable inside
terminal width 80
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top