我有一台有三个静态 IP 地址的服务器。我想在这些设置中添加一个桥接。我尝试以这种方式添加桥接,但似乎不起作用。
auto bond0
iface bond0 inet static
slaves eno1 eno2
bond-mode active-backup
bond-miimon 100
bond-primary eno1
auto br0
iface br0 inet static
address x.x.x.108
netmask 255.255.255.100
gateway x.x.x.1
dns-nameservers 8.8.8.8 4.2.2.2
bridge_ports bond0
bridge_stp on
bridge_fd 0
bridge_maxwait 0
auto br0
iface br0 inet static
address x.x.x.108
netmask 255.255.255.100
auto br0
iface br0 inet static
address x.x.x.110
netmask 255.255.255.100
答案1
这里有一个明显的错误:
bridge_ports bond_lan
您命名了您的债券接口bond0
,但错误地输入了bond_lan
。
bridge_ports bond0
另一个错误是,您已将 IP 地址添加到绑定接口,但必须将它们添加到桥接接口。同样将它们更改为br0
。
iface br0 inet static