我在使用 Proxmox 和 ARP 更改虚拟机的 MAC 地址时遇到了问题。
arp -a
返回:
ipxxx.ip-51-89-201.eu (51.89.201.xxx) at fe:ed:de:ad:be:ef [ether] on vmbr0
此虚拟机的 MAC 不应该是那样。重新启动(虚拟机)或刷新 ARP 缓存可以暂时修复此问题。
MAC fe:ed:de:ad:be:ef
(feed dead beef)是有人用免费 arp 充斥网络的标志吗?51.195.234.254 是机器上的网关地址
? (51.195.234.254) at fe:ed:de:ad:be:ef [ether] on vmbr0
Proxmox 节点 /etc/network/interfaces
auto lo
iface lo inet loopback
auto enp193s0f0
iface enp193s0f0 inet manual
auto enp133s0f0
iface enp133s0f0 inet manual
auto enp133s0f1
iface enp133s0f1 inet manual
auto enp193s0f1
iface enp193s0f1 inet manual
iface enp9s0f3u2u2c2 inet manual
auto bond0
iface bond0 inet manual
bond-slaves enp193s0f0 enp193s0f1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto bond1
iface bond1 inet manual
bond-slaves enp133s0f0 enp133s0f1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2+3
auto vmbr0
iface vmbr0 inet static
address 51.195.234.xxx/24
gateway 51.195.234.254
bridge-ports bond0
bridge-stp off
bridge-fd 0
post-up ip route add 51.89.201.xxx/28 dev vmbr0
post-up echo 1 >/proc/sys/net/ipv4/ip_forward
我尝试添加以下内容,但效果不大
net.ipv4.conf.vmbr0.arp_ignore=1
net.ipv4.conf.vmbr0.arp_announce=2
我现在知道的唯一临时解决办法是清除当前的 ARP 缓存
ip -s -s neigh flush all