我在一个网关中使用四个 ISP 连接,并且希望以模式 0(循环)使用它们。
所有 ISP 都有静态 IP。我一直试图绑定 ISP,但无法成功。我尝试过 netplan 和接口模式以循环模式进行配置,但失败了。
我使用以下代码连接了至少两个 ISP
auto lo
iface lo inet loopback
auto enp4s5f0
iface enp4s5f0 inet manual
bond-master bond0
auto enp4s5f1
iface enp4s5f1 inet manual
bond-master bond0
auto bond0
iface bond0 inet static
address 192.168.2.201
netmask 255.255.255.0
network 192.168.1.0
gateway 192.168.2.1
bond-mode round-robin
bond-miimon 100
bond-slaves none
非常感谢您的帮助。