Skip to content

Commit 4d648ae

Browse files
fix(proxmox): Added note about LACP/LAGG
1 parent e034b75 commit 4d648ae

File tree

1 file changed

+34
-0
lines changed

1 file changed

+34
-0
lines changed

_posts/2021-07-10-proxmox-7.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,38 @@ Do the upgrade
6464
```
6565
apt update
6666
apt dist-upgrade
67+
```
68+
69+
## network changes
70+
71+
If you're running LACP / LAGG I found that you need to make some additional changes to your network config. See the comments in the config
72+
73+
`/etc/network/interfaces`
74+
75+
```conf
76+
auto lo
77+
iface lo inet loopback
78+
79+
#auto eno1 <--- I had to comment this out
80+
iface eno1 inet manual
81+
82+
#auto eno2 <--- I had to comment this out
83+
iface eno2 inet manual
84+
85+
auto bond0
86+
iface bond0 inet manual
87+
bond-slaves eno1 eno2
88+
bond-miimon 100
89+
bond-mode 802.3ad
90+
bond-xmit-hash-policy layer2+3
91+
92+
auto vmbr0
93+
iface vmbr0 inet static
94+
address 192.168.0.11/24
95+
gateway 192.168.0.1
96+
bridge-ports bond0
97+
bridge-stp off
98+
bridge-fd 0
99+
bridge-vlan-aware yes
100+
bridge-vids 2-4094
67101
```

0 commit comments

Comments
 (0)