绑定接口不工作

绑定接口不工作

每次我输入以下代码(如下)。问题是网络设备变得不受管理。我将托管设置为 true。这不起作用。当我执行 ifconfig 时,它缺少“bond0”ip 地址信息

  bonding mode=0 miimon=200

  auto lo

  iface lo inet loopback


   auto eth2

   iface eth2 inet manual

   bond-master bond0


   auto eth3

   iface eth3 inet manual

   bond-master bond0


   auto bond0

   iface bond0 inet static

   address 192.168.0.10

   netmask 255.255.255.0

   gateway 192.168.0.254

   dns-nameservers 192.168.0.1

   bond-mode 0

   post-up ifenslave bond0 eth2 eth3

   pre-down ifenslave -d bond0 eth2 eth3

答案1

下面是我的工作绑定配置。两个网卡 em1 和 p3p1 都连接到同一个交换机。顺便说一句,看起来两个网卡都承载流量,而不是处于“主动备份”模式。

我可以看到两个接口上的计数器都在增加,但速率不同。

# The loopback network interface  
auto lo  
iface lo inet loopback 

# The primary network interface  
auto p3p1  
iface p3p1 inet manual  
        bond-master bond0  
        bond-primary p3p1  

# The secondary network interface  
auto em1  
iface em1 inet manual  
        bond-master bond0  

# Bonding Interface  
auto bond0  
iface bond0 inet static  
        address 192.168.1.99  
        netmask 255.255.255.0  
        broadcast 192.168.1.255  
        gateway 192.168.1.1  
        network 192.168.1.0  
        metric 10  
        up /sbin/ifenslave bond0 p3p1 em1  
        down /sbin/ifenslave -d bond0 p3p1 em1  
        bond-mode active-backup  
        dns-nameservers 192.168.1.1 8.8.8.8  

答案2

尝试拼写出债券模式

bond-mode balance_rr

希望这能有所帮助,祝你们感情顺利 :)

相关内容