我们正在运行 Ubuntu 22.04 LTS。我们在网络接口文件中使用绑定。重新启动服务器后,bond0 接口始终采用新的 mac 地址。如何让 bond0 接口使用 eth0 硬件 mac 地址?我在此处粘贴了网络接口文件。
# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo eth0 eth1 bond0
iface lo inet loopback
##### bond0-slaves
iface eth0 inet manual
bond-master bond0
bond-primary eth0
iface eth1 inet manual
bond-master bond0
##### bond-interface
iface bond0 inet dhcp
bond-mode active-backup
bond-miimon 100
bond-slaves none# interfaces(5) file used by ifup(8) and ifdown(8)
auto lo eth0 eth1 bond0
iface lo inet loopback
##### bond0-slaves
iface eth0 inet manual
bond-master bond0
bond-primary eth0
iface eth1 inet manual
bond-master bond0
##### bond-interface
iface bond0 inet dhcp
bond-mode active-backup
bond-miimon 100
bond-slaves none
在 Proxmox 中,我使用“bridge-hw eth0”,它在那里正常工作,但在 Ubuntu 操作系统中却不行。我找到了“hwaddress ether <MAC_address_of_eth0>”,但我们不想使用它。还有其他方法吗?
谢谢。