Skip to content

Instantly share code, notes, and snippets.

@mrkhachaturov
Created December 24, 2024 22:14
Show Gist options
  • Save mrkhachaturov/4bef5c2634c31c261f9fe19b8e645648 to your computer and use it in GitHub Desktop.
Save mrkhachaturov/4bef5c2634c31c261f9fe19b8e645648 to your computer and use it in GitHub Desktop.
Mitigate FRR Timing Issues at Boot
GNU nano 7.2 /etc/network/interfaces
# so.
# PVE will preserve these directives, but will NOT read its network
# configuration from sourced files, so do not attempt to move any of
# the PVE managed interfaces into external files!
auto lo
iface lo inet loopback
auto en05
iface en05 inet manual
#do not edit it GUI
auto en06
iface en06 inet manual
#do not edit in GUI
iface enp91s0 inet manual
iface enp93s0 inet manual
auto enp6s0f0np0
iface enp6s0f0np0 inet manual
auto enp6s0f1np1
iface enp6s0f1np1 inet manual
iface wlp94s0 inet manual
auto bond0
iface bond0 inet manual
bond-slaves enp6s0f0np0 enp6s0f1np1
bond-miimon 100
bond-mode 802.3ad
bond-xmit-hash-policy layer2
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto vmbr0.1
iface vmbr0.1 inet static
address 10.10.0.146/24
gateway 10.10.0.1
post-up sleep 5 && logger "FRR post-up restart triggered" && /usr/bin/systemctl restart frr.service
source /etc/network/interfaces.d/*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment