networker050184 wrote: » First question I'd ask is why load balance? Do you really need it or does someone just want the graphs to look even? IMO its much better to run an active/standby link configuration or let traffic figure it's way out naturally with BGP. If you have some actuall need for load balancing then you can look into attributes. My last resort would be some kind of PBR though. Big fan of the K.I.S.S. method myself.
cisco_trooper wrote: » How many users are we talking about? What's the cost in lost revenue and lost wages in a 30 minute internet outage if you have to manually re-route internet traffic?
dtlokee wrote: » To understand your network setup right now you have all of your PCs set to use one or the other ISP routers as their default gateway? The first step in the process will be to implement the 2851 router inbetween the users and the 3 ISP routers and create a new user (or router segment). It's really not going to be a trival task if you are new to the concepts of networking, routing, subnetting etc. You would need to implement either failover from one ISP to another or policy routing to help load balance across all 3. As was already stated you would need to do something like: access-list 1 permit 192.168.1.0 0.0.0.63 access-list 2 permit 192.168.1.64 0.0.0.63 access-list 3 permit 192.168.1.128 0.0.0.127 route-map ISP permit 10 match ip address 1 set ip next-hop 192.168.3.1 route-map ISP permit 20 match ip address 2 set ip next-hop 192.168.3.2 route-map ISP permit 30 match ip address 3 set ip next-hop 192.168.3.3 then on the interface attached to the hosts: interface gigabit0/0 ip address 192.168.1.1 255.255.255.0 ip policy route-map ISP That will take the traffic from the different groups of hosts (1-63, 64-127, 128-255) and forward them to different ISP routers.
pham0329 wrote: » Keep in mind that while with the new setup, you'll have redundant connections to the internet, you've essentially introduced a single point of failure in that if the 2821 goes down, your entire network goes down.
doddle wrote: » In order to avoid this , we have 2 more ISP providers..if suppose if one ISP provider links goes down means we can switch over to another... this s our main concept
tokhss wrote: » Been reading through this.. got a question for the guru's.. lets say the OP properly setup failover with 3 ISP via BGP or PBR... what would be the next step to avoid the single point of failure.. the router itself. How would you setup another router to kick in with the same config as the primary router without the users noticing? so to sum this up.. primary goes down.. backup router kicks in.. users are happy. Would this be a manual thing, like just have a shadow router on standby or can this be done automatically?
doddle wrote: » ok...now i understand that .... but according to your points....if i configuer the individual routers to handle the failover conditions separatly means.. if suppose the router fails means then the other one will be active and take incharge and that single ISP which is allocated to that router is only be in active conditions and the other two are inactive....Then wat about that single ISP bandwidth...???? consider that 5:5 bandwith of that ISP will be allocated to my entire company?????
tokhss wrote: » I believe you are getting 5:5.. not 15. You would need some sort of bonding on the carrier end to achieve 15 mbit.