绑定后无法用一个 iface ping 通

绑定后无法用一个 iface ping 通

由于我已经在 debianstretch 上绑定(主动备份)eth0 和 wlan0,我无法再使用 ETH0 对 LAN 上的特定设备执行 ping 操作。

LAN 中的每个设备都能够以两种方式 ping 通
即使更改设备的 IP 地址,问题仍然存在
所有受影响的协议(不仅是 ICMP)
与 WLAN0 完美配合
允许与 IPTables 的所有传入/传出连接
目标设备 IP 为 192.168.1。 XX

/etc/网络/接口


auto lo
iface lo inet loopback

auto eth0
allow-hotplug eth0
iface eth0 inet manual
    bond-master     bond0
    bond-mode       active-backup

auto wlan0
allow-hotplug wlan0
iface wlan0 inet manual
    wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
    bond-master     bond0
    bond-mode       active-backup

auto bond0
iface bond0 inet static
    address 192.168.1.39
    netmask 255.255.255.0
    network 192.168.1.0
    broadcast 192.168.1.255
    gateway 192.168.1.254
    dns-nameservers 9.9.9.9 192.168.1.254
    bond-mode active-backup
    bond-miimon 200
    bond-downdelay 200
    bond-updelay 200
    bond-slaves none
    bond-primary eth0
    bond-fail_over_mac none
    hw-address b8:27:eb:ff:12:34

路线

Destination     Gateway         Genmask         Flags Metric Ref    Use Iface
default         192.168.1.254   0.0.0.0         UG    0      0        0 bond0
172.17.0.0      0.0.0.0         255.255.0.0     U     0      0        0 docker0
192.168.1.0     0.0.0.0         255.255.255.0   U     0      0        0 bond0

答案1

将绑定模式更改为负载平衡“解决”了该问题。

相关内容