我有一个客户使用Vyatta vRouters (博科vRouters)。他们已经部署了两个独立的vRouters来实现冗余,每一个都有自己的ISP连接。ISP是不一样的。
Vyatta是否有类似Cisco IOS的IP SLA跟踪功能,我可以自动故障转移和恢复我的ISP连接(即使我的链接光/物理/逻辑NIC从未链接)?
以前有人配置过这个吗?
发布于 2016-09-14 20:47:41
免责声明:我对Vyatta的当前版本并不熟悉,因为在Brocade收购之前,我使用它还是开源版本,现在我使用VyO(开源叉子),但我想这并没有什么改变……
因此,对于Vyatta6.5和VyO,答案是肯定的,有一个叫做"Wan负载平衡“的特性,它使用ICMP监视外部IP地址。
下面是一个例子:
vyatta@R1# show load‐balancing
wan {
interface‐health eth0 {
failure‐count 5
nexthop 12.34.56.1
test 10 {
target 11.22.33.44
type ping
}
test 20 {
target 55.66.77.88
type ping }
}
interface‐health eth1 {
failure‐count 4
nexthop 98.76.54.1
test 10 {
target 99.88.77.66
type ping }
test 20 {
target 55.44.33.22
type ping
}
}
rule 10 {
inbound‐interface eth3
interface eth0 {
}
interface eth1 {
}
}
}
https://networkengineering.stackexchange.com/questions/34915
复制相似问题