Unequal load-sharing with static routes + Local IP
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-04-2013 05:16 AM - edited 03-04-2019 09:45 PM
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?
- Labels:
-
Other Routing
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2013 06:43 AM
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
Rick
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-07-2013 07:04 AM
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 <
-------------------------
