Getting very confused reading through so many OVS explanations and examples, most with complexities i don't need and none of which clearly answer my questions.
Question 1
I have eth0 NIC connected to a line giving me a native VLAN (10.1.1.0/24) and a tagged (tag=2) VLAN (172.17.0.0/16). No bonding involved. No clusters or fail-overs.
I want to use:
Question 2
I also have 2 VLANs which are internal only (connecting VM to VM) -- no hardware connections.
Are these ovs_type OVSBridge or OVSIntPorts or both?
Question 3
For which of the above do i need?:
ovs_extra set interface ${IFACE} external-ids:iface-id=$(hostname -s)-${IFACE}-vif
Thank you.
Question 1
I have eth0 NIC connected to a line giving me a native VLAN (10.1.1.0/24) and a tagged (tag=2) VLAN (172.17.0.0/16). No bonding involved. No clusters or fail-overs.
I want to use:
- Native VLAN (10.1.1.0/24) for Proxmox console. It needs an IP for the console (10.1.1.232).
- Tag=2 VLAN for VMs. IPs are supplied by VMs -- since no console connection here, does it also need an IP in interfaces?
- Native VLAN has its default gateway (10.1.1.1) and Tag=2 VLAN has its default gateway (172.17.1.1). Are these both entered in interfaces?
Question 2
I also have 2 VLANs which are internal only (connecting VM to VM) -- no hardware connections.
Are these ovs_type OVSBridge or OVSIntPorts or both?
Question 3
For which of the above do i need?:
ovs_extra set interface ${IFACE} external-ids:iface-id=$(hostname -s)-${IFACE}-vif
Thank you.