[ovs-discuss] how to use nlmon?

2013-02-26 Thread Ray
hello, How to use nlmon? More detail will be well . Thanks.___ discuss mailing list discuss@openvswitch.org http://openvswitch.org/mailman/listinfo/discuss

Re: [ovs-discuss] how to report the links

2013-02-26 Thread vis reddy
Thanks Justin for the help, I am able to see the inter-switch links . For some reason the type of the port are showing "internal" what does this mean, how is the controller identifying  the port as internal and how can i change this? because of this when i issue the following curl, the output is

[ovs-discuss] Open vSwitch 1.9.0 and 1.4.6 Available

2013-02-26 Thread Justin Pettit
The Open vSwitch team is pleased to announce the release of Open vSwitch 1.9.0: http://openvswitch.org/releases/openvswitch-1.9.0.tar.gz This release contains new features and bug fixes. It also represents our new LTS (long-term support) release branch. Feature highlights of 1.9.0 include:

Re: [ovs-discuss] VLAN settings with patch port

2013-02-26 Thread Lucas Brasilino
Hi! > I thought br0 behaves like a L2 switch on which multiple VLAN tags may exist. > Thus tagging 100 on br0, I though it does not make any sense. Anyway, thanks > for your help. When you are tagging br0 interface, you are not setting that only VLAN 100 traffic can go through the bridge. What

Re: [ovs-discuss] [question] Write ovs database failed with "no space left on device"

2013-02-26 Thread likunyun
The problem is : It's still failed after releasing the space on disk. I make a patch to fix it: --- ovsdb/log.c+++ ovsdb/log.c@@ -324,5 +324,5 @@ json_string = NULL; -if (file->write_error) {+if (file->write_error && (ENOSPC != ovsdb_error_errno(file->write_error))) {return o

Re: [ovs-discuss] [question] Write ovs database failed with "no space left on device"

2013-02-26 Thread Ben Pfaff
Can you give me a Signed-off-by for that patch? On Tue, Feb 26, 2013 at 03:42:18PM +, likunyun wrote: > > The problem is : It's still failed after releasing the space on disk. > I make a patch to fix it: > --- ovsdb/log.c+++ ovsdb/log.c@@ -324,5 +324,5 @@ > json_string = NULL; > -if (