On a single Host, I created vmbr1, with bond0 as an enslaved interface.
On the parent Datacenter, I setup an SDN (type=VLAN) and some VNets, one of which was Infra (vlan 100).
How would I get the management IP of the PVE installation to be on the Infra VNet itself? The issue is that my locally defined management (1) interface conflicts with the SDN interface (2). I get error message with ifup that assigning an IP address is not allowed on enslaved interfaces
1) /etc/network/interfaces
2) /etc/network/interfaces.d/sdn
On the parent Datacenter, I setup an SDN (type=VLAN) and some VNets, one of which was Infra (vlan 100).
How would I get the management IP of the PVE installation to be on the Infra VNet itself? The issue is that my locally defined management (1) interface conflicts with the SDN interface (2). I get error message with ifup that assigning an IP address is not allowed on enslaved interfaces
1) /etc/network/interfaces
Code:
auto bond0
iface bond0 inet manual
bond-slaves eno8303 eno8403
bond-miimon 100
bond-mode active-backup
bond-primary eno8303
auto vmbr1
iface vmbr1 inet manual
bridge-ports bond0
bridge-stp off
bridge-fd 0
auto bond0.100
iface bond0.100 inet static
address 10.118.65.10/24
gateway 10.118.65.1
vlan-id 100
vlan-raw-device bond0
2) /etc/network/interfaces.d/sdn
Code:
auto Infra
iface Infra
bridge_ports ln_Infra
bridge_stp off
bridge_fd 0
auto ln_Infra
iface ln_Infra
link-type veth
veth-peer-name pr_Infra
auto pr_Infra
iface pr_Infra
link-type veth
veth-peer-name ln_Infra
auto vmbr1v100
iface vmbr1v100
bridge_ports bond0.100 pr_Infra
bridge_stp off
bridge_fd 0