Hi there,
today, or better tonight, i decided to reconfigure my network using openvswitch. For testing i attached my two server interfaces to two switch ports.
The switch in use is a managed switch by TP-Link.
eth0 is connected to a port which runs in access mode
(untagged VLAN ID 10, primary VLAN ID 10)
eth1 is connected to a port which runs in trunk mode
(tagged VLAN IDs 1, 10, 101, primary VLAN ID 10)
with a wiped network configuration i tried the following:
I am using Proxmox VE 3.2 with kernel 2.6.32-29-pve.
Also it might be worth a note, that both my interfaces use the intel e1000 driver.
Thanks in advance
today, or better tonight, i decided to reconfigure my network using openvswitch. For testing i attached my two server interfaces to two switch ports.
The switch in use is a managed switch by TP-Link.
eth0 is connected to a port which runs in access mode
(untagged VLAN ID 10, primary VLAN ID 10)
eth1 is connected to a port which runs in trunk mode
(tagged VLAN IDs 1, 10, 101, primary VLAN ID 10)
with a wiped network configuration i tried the following:
Code:
ovs-vsctl add-br br0
ovs-vsctl add-port br0 eth0 vlan_mode=access tag=10
ovs-vsctl add-port br0 eth1
ovs-vsctl add-port br0 vlan10 tag=10 -- set interface vlan10 type=internal
ifconfig vlan10 10.0.14.17 netmask 255.255.255.0
ifconfig eth0 up
ping 10.0.14.1 #Works
ifconfig eth0 down
ifconfig eth1 up
ping 10.0.14.1 #Does not work
I am using Proxmox VE 3.2 with kernel 2.6.32-29-pve.
Also it might be worth a note, that both my interfaces use the intel e1000 driver.
Thanks in advance