Bridge

如何“橋接”新綁定的 NIC?

  • June 24, 2013

我綁定eth0,eth1和我eth2的伺服器以使用該包eth3創建單個bond0界面。ifenslave現在我希望在此伺服器上創建多個虛擬機以設置集群。這些 VM 需要具有“橋接”網路連接。

但是,我使用的虛擬機軟體 ( http://virt-manager.org/ ) 說bond0沒有橋接。

我如何使它橋接?

您需要該軟體包bridge-utils來設置橋接。

我找到了一個範例配置文件(在此處找到):

# /etc/network/interfaces
auto lo
iface lo inet loopback

# The bonded network interface
auto bond0
iface bond0 inet manual
   bond-slaves none
   bond-mode   802.3ad
   bond-miimon 100

# Enslave all the physical interfaces
auto eth0
iface eth0 inet manual
   bond-master bond0

auto eth1
iface eth1 inet manual
   bond-master bond0

auto eth2
iface eth2 inet manual
   bond-master bond0

auto eth3
iface eth3 inet manual
   bond-master bond0

# Configure the bridging interface
auto br0
iface br0 inet static
   address 10.0.0.10
   netmask 255.255.255.0
   gateway 10.0.0.1
   bridge-ports  bond0
   bridge-fd     9
   bridge-hello  2
   bridge-maxage 12
   bridge-stp    off

只需根據您的需要修改地址/網路遮罩,它應該可以正常工作。

引用自:https://serverfault.com/questions/518072