我有两个网络接口 eth0 和 eth1,我只是想知道如果“eth0”出现故障,如何自动将“eth1”作为默认路由?
答案1
你想要的叫做interface bonding
- 有很多关于如何设置的指南,这个适合用来输入基本信息, 和这个有更多信息。
这ifcfg-bonding手册页(和参考资料)也可能有帮助,并且可能比您通过谷歌搜索找到的任何教程都更为最新。
答案2
您可以使用 的度量参数route
。度量被视为到达目标网络或主机的额外跳数。
route add default gw eth1defaultroute metric 10 dev eth1
这是“老派”的做事方式。
您可能还有兴趣了解 iproute2:
ip route add default via eth1defaultroute metric 10 dev eth1
有关详细信息,请参阅:
答案3
第三个选择是使用 BGP。