Is there a way to setup a ipsec vpn to a router that has a single internet connection from a router that has multiple internet connections. Basically we have a remote site and have two dsl lines from different providers and these terminate to a data center router. I know that both connections are able to do crypto because if i remove the other crypto line for the redundant vpn it will come up. Here is my configs.
Main Router ( This router will receive both vpn tunnels. )
crypto isakmp policy 1
encr 3des
authentication pre-share
group 2
!
crypto isakmp key secret address 218.242.222.84
crypto isakmp key secret address 221.133.228.202
!
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
!
crypto map IPSEC 1 ipsec-isakmp
set peer 218.242.222.84
set transform-set ESP-3DES-SHA
match address 107
crypto map IPSEC 2 ipsec-isakmp
set peer 221.133.228.202
set transform-set ESP-3DES-SHA
match address 106
!
int fa0/0
description outside
ip address 211.144.211.154 255.255.255.248
no shut
crypto map IPSEC
!
int fa1/0
description inside
ip address 10.135.0.1 255.255.255.0
!
ip route 0.0.0.0 0.0.0.0 211.144.211.153
!
access-list 106 permit ip 10.135.0.0 0.0.255.255 10.248.3.0 0.0.0.255
access-list 107 permit ip 10.135.0.0 0.0.255.255 10.248.3.0 0.0.0.255
Remote Router ( this router has the two connections one will be for backup )
crypto isakmp key secret address 211.144.211.154
!
crypto isakmp policy 1
encr 3des
authentication pre-share
group 2
!
crypto ipsec transform-set ESP-3DES-SHA esp-3des esp-sha-hmac
!
crypto map IPSEC 1 ipsec-isakmp
description Tunnel to Shangha-IDC
set peer 211.144.211.154
set transform-set ESP-3DES-SHA
match address 100
!
crypto map IPSEC 2 ipsec-isakmp
description Tunnel to Shangha-IDC
set peer 211.144.211.154
set transform-set ESP-3DES-SHA
match address 102
!
int fa0/0
description outside
ip address 218.242.222.84 255.255.255.248
ip nat outside
crypto map IPSEC
int fa1/0
description outside
ip address 221.133.228.202 255.255.255.248
crypto map IPSEC
int fa2/0
description inside
ip address 10.248.3.1 255.255.255.0
ip route 0.0.0.0 0.0.0.0 218.242.222.83
ip route 0.0.0.0 0.0.0.0 221.133.228.201 10
access-list 100 permit ip 10.248.3.0 0.0.0.255 10.135.0.0 0.0.255.255
access-list 102 permit ip 10.248.3.0 0.0.0.255 10.135.0.0 0.0.255.255
Start Free Trial