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

Unequal load-sharing with static routes + Local IP

kam thang
Level 1
Level 1

Hi Guys,

I'm planning to configure Unequal load-sharing with static routes (1:2) on our router 2951. We have to seperate ISP lease line provider 30Mbps and 45Mbps. Our local ip is in the 192.168.1.1 - 192.168.1.250. Is there a way i can enable the local ip address range 192.168.1.10 - 50 to access only the 30Mbps line and the rest of the ip address 192.168.1.51-250 to access only the 45Mbps?

2 Replies 2

Richard Burts
Hall of Fame
Hall of Fame

You could achieve this by configuring Policy Based Routing. In PBR you configure a route map. The route map will use an access list to identify traffic to be policy routed and will set the ip next hop. So you would configure an access list to specify the first IP range and set its next hop to the 30 interface and another access list to specify the second range and set its next hop to the 45 interface.

HTH

Rick

HTH

Rick

s.kanth
Level 1
Level 1

Hi Kam,

Yes, Rick is right ,you can go with PBR...

Here is the sample configuration... ( other Gurus may come with different solution :-) )

--------------------------------------

access-list 1 permit 192.168.1.0 0.0.0.63
ip access-list standard RESTOFNETWORK   ( or you can use Prefix-list)
10 permit 192.168.1.64 0.0.0.63
20 permit 192.168.1.128 0.0.0.127


interface gi0/1  ( LAN Interface)
ip policy route-map PBR

route-map PBR permit 10

match ip address 1

set next-hop <>

route-map PBR permit 20

match ip address RESTOFNETWORK

set next-hop <>

-------------------------

Getting Started

Find answers to your questions by entering keywords or phrases in the Search bar above. New here? Use these resources to familiarize yourself with the community:

Review Cisco Networking products for a $25 gift card