30 pts.
 2 isp ADSL Load balance with cisco 3560
Hello. It is possible to load balance 2 isp (2 adsl link) with cisco 3560 L3 switch? how can I do it? thanks in advance! best regards.

Software/Hardware used:
cisco 3560 L3
ASKED: July 1, 2010  3:26 PM
UPDATED: October 7, 2010  9:56 PM

Answer Wiki:
You can outbound but you may need some help from your ISP (s) to do the inbound. Easiest way is to set up 2 VLANs and and SVI per VLAN. Put each routers ethernet port into an access port in a VLAN. Configure a /30 on each SVI and the other end on a router. The use 2 default static routes. See below: vlan 1 (configured by default) vlan 2 interface vlan 1 (configured by default) ip address 192.168.1.1 255.255.255.252 no shut ! interface vlan 2 ip address 192.168.2.1 255.255.255.252 no shut ! interface fas0/1 desc Link To ISP A Router 1 switchport mode access switchport access vlan 1 no shut ! interface fas0/1 desc Link To ISP A Router 2 switchport mode access switchport access vlan 2 no shut ! ip route 0.0.0.0 0.0.0.0.0 192.168.1.2 ip route 0.0.0.0 0.0.0.0.0 192.168.2.2 You may have some issues if both routers and connections aren't from the same ISP though and as I mentioned inbound may need some other work with the ISP. Also feel free to change VLAN numbers as appropriate to your unique topology.
Last Wiki Answer Submitted:  July 6, 2010  1:14 pm  by  Matt Mather   3,610 pts.
All Answer Wiki Contributors:  Matt Mather   3,610 pts.
To see all answers submitted to the Answer Wiki: View Answer History.


Discuss This Question:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _


 

Hi, I will try !

thanks a lot.

 30 pts.