cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
821
Views
0
Helpful
2
Replies

how to configure 1811 ISR with dual ISP

emoises
Level 1
Level 1

please give me sample config how to configure dual WAN (2 ISP) for Cisco 1811 ISR router, with load sharing and failover.. and what if I add VPN failover with 3 sites using IPSEC.

I appreciate your big help.

thank you very much...

2 Replies 2

gauravprakash
Level 1
Level 1

To keep things simple u can put 2 static routes with just their outgoing interfaces for the same destination. This will do loadbalancing + failover. This may not work if you have Ethernet presentation as WAN link..

I could not get ur other question...?

HTH

G

Hi,

following the approach from the previous post the config could look like this (you have to adjust interface names and IP addresses to your environment):

interface Serial0

description to ISP1

ip address 1.1.1.2 255.255.255.252

interface Serial1

description to ISP2

ip address 2.2.2.2 255.255.255.252

ip route 0.0.0.0 0.0.0.0 1.1.1.1

ip route 0.0.0.0 0.0.0.0 2.2.2.1

Also be advised, that this only takes care about IP routing, but NOT about security - in fact there are no security filters in place at all.

Things get a lot more complicated in case you need NAT, because you do not have your own IP address range. So the question is: do you have your own IP addresses or do you get your official IPs from the respective ISPs?

Regards, Martin