I am having a problem configuring open vswitch with my vlan configuration, I am running Ubuntu 15.04 (3.16.0-37).
The following with ip/kernel configuration works, $ ip link add link eth1 name eth1.120 type vlan id 120 $ ip add add 192.168.11.10 dev eth1.120 $ ip link set up dev eth1.120 $ route add default gw 192.168.11.1 eth1.120 $ ping -c 2 192.168.11.1 I am under the impression the following should work with ovs to establish the same results, but does not. $ ip link set promisc on dev eth1 $ ovs-vsctl --version ovs-vsctl (Open vSwitch) 2.3.1 DB Schema 7.6.2 $ ovs-vsctl add-br br1 $ ovs-vsctl add-port br1 eth1 $ ovs-vsctl add-br vlan120 br1 120 # Create Fake Bridge with vlan 120 $ ovs-vsctl add-port vlan120 vif120 -- set interface vif120 type=internal $ ifconfig vif120 192.168.11.10 up $ route add default gw 192.168.11.1 $ ping -c 2 192.168.11.1 Loss of packets, have a missed something? How should I achieve same ip stack configuration with ovs as shown above? NOTE: a. Creating eth1.120 and adding as port to bridge created with ovs and assigning ip to bridge results in functioning interface but ultimately fails with the creation of additional vlans on same bridge/interface and expecting packets to be externally route-able.
_______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
