Howdy Noob here,
I am sure this question comes up often, but I have searched and browsed and can't come up with a solution.
My network is all trunk ports, VLAN tag required, except for iSCSI which are access ports. Therefore I set up a bond (rr) for all of the trunk ports and then a Linux VLAN for the management IP of my PVE host. So far so good. Then I set up a bridge to the bond, VLAN aware, no IP or gateway.
Next I created a VM (Windows with VirtIO installed) and set the NIC to VLAN 26 (correct VLAN) and I get nothing. NIC shows as connected but no traffic passing.
What am I doing wrong?
THX in ADV,
-JB
Here's the config:
I am sure this question comes up often, but I have searched and browsed and can't come up with a solution.
My network is all trunk ports, VLAN tag required, except for iSCSI which are access ports. Therefore I set up a bond (rr) for all of the trunk ports and then a Linux VLAN for the management IP of my PVE host. So far so good. Then I set up a bridge to the bond, VLAN aware, no IP or gateway.
Next I created a VM (Windows with VirtIO installed) and set the NIC to VLAN 26 (correct VLAN) and I get nothing. NIC shows as connected but no traffic passing.
What am I doing wrong?
THX in ADV,
-JB
Here's the config:
Code:
auto lo
iface lo inet loopback
auto ens161
iface ens161 inet manual
auto ens192
iface ens192 inet manual
auto ens193
iface ens193 inet manual
auto ens224
iface ens224 inet manual
auto ens225
iface ens225 inet static
address 10.0.0.201/24
mtu 9000
#iSCSI 1
auto ens256
iface ens256 inet static
address 10.0.0.221/24
mtu 9000
#iSCSI 2
auto bond0
iface bond0 inet manual
bond-slaves ens161 ens192 ens193 ens224
bond-miimon 100
bond-mode balance-rr
#10GbE Bond for Trunk
auto vmbr0
iface vmbr0 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
bridge-vlan-aware yes
bridge-vids 2-4094
auto MGMT
iface MGMT inet static
address 172.20.100.201/16
gateway 172.20.0.1
vlan-id 26
vlan-raw-device bond0
#Management IP
source /etc/network/interfaces.d/*