Displaying 2 results from an estimated 2 matches for "ovs0".
Did you mean:
ovs
2012 Jun 29
2
Bug#679533: Traffic forwarding issue between Xen domU/dom0 and ovs
...:09 brd ff:ff:ff:ff:ff:ff
inet 10.140.36.9/24 brd 10.140.36.255 scope global eth4
inet6 fe80::216:3eff:fe00:2409/64 scope link
valid_lft forever preferred_lft forever
Excerpt from ovs-vsctl show on the dom0:
# ovs-vsctl show
5d701b49-1f5a-4a9d-8bfb-f064b3f4ed95
Bridge "ovs0"
Port "domU-24-09"
tag: 36
Interface "domU-24-09"
[...]
ovs_version: "1.4.0+build0"
When pinging from another host in the same vlan (10.140.36.2), no
traffic reaches host 10.140.36.9
$ ping -c 3 10.140.36.9
PING 10.140.36...
2011 Aug 03
0
openvswitch on xen 4.x
...VLAN
tagging for separating test domains so I designed the vif-network
script to handle tagging traffic on a port. In order to take
advantage of tagging you must append the tag number to the bridge name
in your guest domain configuration file separated by a period. i.e.,
vif = [ ''bridge=ovs0.3'' ]
I hope this helps someone. Enjoy and good luck!
/etc/xen/scripts/network-openvswitch:
#!/bin/bash
#============================================================================
# Default Xen network start/stop script.
# Xend calls a network script when it starts.
# The script name t...