I'm trying to set up a VLAN on a active bond interface. We're using the last example on the Proxmox Wiki page, but when applying our config we get the below error:
Below is our config:
We're running a clean install of the latest 7.0.2 image. I'm curious to hear what we're doing wrong...
Code:
root@n01:~# ifreload -a
error: netlink: bond0.611: cannot create vlan bond0.611 611: operation failed with 'Operation not supported' (95)
Code:
auto lo
iface lo inet loopback
auto ens4f1
iface ens4f1 inet manual
iface ens3f0 inet manual
auto ens3f1
iface ens3f1 inet manual
iface ens4f0 inet manual
iface ens2f0 inet manual
iface ens2f1 inet manual
auto bond0
iface bond0 inet manual
bond-slaves ens3f1 ens4f1
bond-miimon 100
bond-mode 802.3ad
iface bond0.611 inet manual
auto vmbr0v611
iface vmbr0v611 inet static
address xx.xx.11.1/24
# gateway # comment it if you want to have any gateway
bridge-ports bond0.611
bridge-stp off
bridge-fd 0
auto vmbr0
iface vmbr0 inet static
address xx.xx.xx.31/24
gateway xx.xx.xx.1
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
We're running a clean install of the latest 7.0.2 image. I'm curious to hear what we're doing wrong...