现在有电信多条链路出口,有拨号有固定IP,想用等价路由做负载分担可以吗,不行的话要怎么做才能扩大出口
(0)
最佳答案
用策略路由吧
省情况下,Device的接口GigabitEthernet 3/0/1上收到的所有访问Server的报文根据路由表转发的下一跳均为10.4.1.2。
现要求在Device上配置IPv4策略路由,对于访问Server的报文实现如下要求:
首先匹配接口GigabitEthernet 3/0/1上收到的源IP地址为10.2.1.1的报文,将该报文的下一跳重定向到10.5.1.2;
其次匹配接口GigabitEthernet 3/0/1上收到的HTTP报文,将该报文的下一跳重定向到10.3.1.2。
为了确保能同时满足对于两种不同类型的报文重定向到不同的下一跳,需要配置两个访问控制列表,一个用于匹配接口GigabitEthernet 3/0/1上收到的源IP地址为10.2.1.1的报文,另一个用于匹配接口GigabitEthernet 3/0/1上收到的HTTP报文,并在策略路由中创建两个节点,分别对匹配上的报文进行重定向;
同一条策略路由中,创建的节点编号越小,优先级越高。为了确保接口GigabitEthernet 3/0/1上收到源IP地址为10.2.1.1的HTTP报文下一跳能优先被重定向到10.5.1.2,需要在策略路由中配置该策略使用较小的节点编号(本例中使用0号节点,另一策略使用1号节点)。
配置接口GigabitEthernet 3/0/1的IP地址。
<Device> system-view
[Device] interface gigabitethernet 3/0/1
[Device-GigabitEthernet3/0/1] ip address 10.1.2.1 255.255.255.0
[Device-GigabitEthernet3/0/1] quit
请参考以上方法配置图中其它接口的IP地址,配置步骤这里省略。
配置静态路由,保证三条路径都可达,并且缺省下一跳为10.4.1.2。
[Device] ip route-static 192.168.1.0 24 10.3.1.2
[Device] ip route-static 192.168.1.0 24 10.4.1.2 preference 40
[Device] ip route-static 192.168.1.0 24 10.5.1.2
定义访问控制列表ACL 3005,用于匹配源IP地址为10.2.1.1的报文。
[Device-acl-adv-3005] rule 0 permit ip source 10.2.1.1 0
[Device-acl-adv-3005] quit
定义访问控制列表ACL 3006,用于匹配HTTP报文。
[Device] acl number 3006
[Device-acl-adv-3006] rule 0 permit tcp destination-port eq www
[Device-acl-adv-3006] quit
创建策略路由pbr1的0号节点,将匹配ACL 3005的报文下一跳重定向到10.5.1.2。
[Device] policy-based-route pbr1 permit node 0
[Device-pbr-pbr1-0] if-match acl 3005
[Device-pbr-pbr1-0] apply next-hop 10.5.1.2
[Device-pbr-pbr1-0] quit
创建策略路由pbr1的1号节点,将匹配ACL 3006的报文下一跳重定向到10.3.1.2。
[Device] policy-based-route pbr1 permit node 1
[Device-pbr-pbr1-1] if-match acl 3006
[Device-pbr-pbr1-1] apply next-hop 10.3.1.2
[Device-pbr-pbr1-1] quit
在Device的接口GigabitEthernet 3/0/1上应用策略。
[Device] interface gigabitethernet 3/0/1
[Device-GigabitEthernet3/0/1] ip policy-based-route pbr1
[Device-GigabitEthernet3/0/1] quit
通过display ip policy-based-route命令可以查看到当前策略路由配置已经配置成功:
[Device] display ip policy-based-route policy pbr1
Policy name: pbr1
node 0 permit:
if-match acl 3005
apply next-hop 10.5.1.2
node 1 permit:
if-match acl 3006
apply next-hop 10.3.1.2
通过tracert命令查看以下报文的转发路径(使用Tracert功能需要在中间设备上开启ICMP超时报文发送功能,在目的端开启ICMP目的不可达报文发送功能):
源IP为10.1.1.1的非HTTP报文,重定向到10.4.1.2进行转发。
<Router> tracert -a 10.1.1.1 192.168.1.1
traceroute to 192.168.1.1 (192.168.1.1) from 10.1.1.1, 30 hops at most, 40 bytes
each packet, press CTRL_C to break
1 10.1.2.1 (10.1.2.1) 2.178 ms 1.364 ms 1.058 ms
2 10.4.1.2 (10.4.1.2) 1.548 ms 1.248 ms 1.112 ms
3 192.168.1.1 (192.168.1.1) 1.594 ms 1.321 ms 1.093 ms
源IP为10.2.1.1的报文,重定向到10.5.1.2进行转发。
<Router> tracert -a 10.2.1.1 192.168.1.1
traceroute to 192.168.1.1 (192.168.1.1) from 10.2.1.1, 30 hops at most, 40 bytes
each packet, press CTRL_C to break
1 10.1.2.1 (10.1.2.1) 1.721 ms 1.226 ms 1.050 ms
2 10.5.1.2 (10.5.1.2) 4.494 ms 1.385 ms 1.170 ms
3 192.168.1.1 (192.168.1.1) 1.448 ms 1.304 ms 1.093 ms
(0)
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
暂无评论