Hi,
I need to configure a network bond with arp_interval and arp_ip_target instead of the usual miimon on my 6.4.x PVE. I have created this config in /etc/network/interfaces:
However, restarting the network using systemctl restart networking, doesn't seem to apply this config. I can get this to work by running these two commands, though:
I know, that these options are not specifically mentioned in the admin manual, but I assumed, that they would work nonetheless.
I need to configure a network bond with arp_interval and arp_ip_target instead of the usual miimon on my 6.4.x PVE. I have created this config in /etc/network/interfaces:
Code:
auto bond1
iface bond1 inet manual
bond-slaves enp5s0f0 enp5s01f
bond-mode active-backup
arp_interval 1000
arp_ip_target 10.11.14.1
However, restarting the network using systemctl restart networking, doesn't seem to apply this config. I can get this to work by running these two commands, though:
Code:
echo 1000 > /sys/class/net/bond1/bonding/arp_interval
echo +10.11.14.1 > /sys/class/net/bond1/bonding/arp_ip_targe
I know, that these options are not specifically mentioned in the admin manual, but I assumed, that they would work nonetheless.