File tree Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Expand file tree Collapse file tree 1 file changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -64,4 +64,38 @@ Do the upgrade
64
64
```
65
65
apt update
66
66
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
67
101
```
You can’t perform that action at this time.
0 commit comments