我正在尝试在我们的办公室安装双WAN,因为我们的单个VDSL调制解调器不能再处理我们的networkingstream量。 所以我们现在有两个VDSL调制解调器(Sagecom FAST2864),它们不能进入网桥模式,因为它们被我们的ISPlocking。 所以我必须解决它们禁用DHCP和WIFI,并在我的思科路由器上设置一个静态地址。
我的拓扑看起来像这样….

我的问题是当两个链接都处于活动状态,并且您尝试浏览互联网时,在加载所有内容之前需要刷新3或4页。 当我禁用其中一个链接一切工作正常! 我已经尝试了ip load-sharing per-packet ip load-sharing per-destination都导致完全相同的问题。 我已经在这个问题上的任何方向下发布我的configuration将是非常有用的,因为我目前正在付出一个额外的VDSL连接是闲置的。
! hostname HWY404 ! ! memory-size iomem 10 ip subnet-zero ip cef ! ! ip name-server 8.8.8.8 ip dhcp excluded-address 10.1.1.1 10.1.1.100 ! ip dhcp pool COMPUTERS network 10.1.1.0 255.255.255.0 default-router 10.1.1.1 dns-server 10.1.1.1 ! <!--OUTPUT OMITTED--> ! interface ATM0/0 no ip address shutdown no atm ilmi-keepalive dsl operating-mode auto ! interface FastEthernet0/0 description BELL-1 ip address 192.168.2.200 255.255.255.0 ip nat outside ip load-sharing per-packet duplex auto speed auto ! interface FastEthernet0/1 description BELL-2 ip address 192.168.1.200 255.255.255.0 ip nat outside ip load-sharing per-packet shutdown duplex auto speed auto ! interface FastEthernet1/0 description LOCAL LAN ip address 10.1.1.1 255.255.255.0 ip nat inside ip load-sharing per-packet duplex auto speed auto ! ip nat inside source route-map BELL1 interface FastEthernet0/0 overload ip nat inside source route-map BELL2 interface FastEthernet0/1 overload ip classless ip route 0.0.0.0 0.0.0.0 192.168.2.1 ip route 0.0.0.0 0.0.0.0 192.168.1.1 ip http server ip pim bidir-enable ! ! ! route-map BELL2 permit 10 match interface FastEthernet0/1 ! route-map BELL1 permit 10 match interface FastEthernet0/0 ! <!--OUTPUT OMITTED--> ! end
在这种情况下,您可以使用route-map为客户组创build策略。 有些事情是这样的:
定义ACL:
ip access-list extended FirstLink permit tcp 10.1.1.10 any eq www deny ip any any
定义路线图:
route-map FirstLan permit 10 match ip address FirstLink set interface Fa0/0
将其应用到LAN接口:
interface FastEthernet1/0 description LAN ip policy route-map FirstLan
但是这需要你有另一个局域网接口(Fa1 / 1)来让其他主机通过。
在这种情况下,要真正实现负载平衡,可以使用pfr / OER