[ovs-discuss] 答复: Re: bridge renaming issue with Xen

2012-03-08 Thread lv . erchun
log is as follows : [root@hc_2c519_1_1_7 /]# ifconfig eth0 Link encap:Ethernet HWaddr 00:27:19:97:59:81 inet6 addr: fe80::227:19ff:fe97:5981/64 Scope:Link UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1 RX packets:188 errors:0 dropped:0 overruns:0 frame:0

Re: [ovs-discuss] bridge renaming issue with Xen

2012-03-08 Thread Jesse Gross
2012/3/8 : > > Hi,all: > > I have a question about xen using ovs to ask for your advice. > > When Xen networking start , I want to rename the physical network adapter > 'eth0' to  'peth0', and  create a bridge 'eth0 > ', add the port 'peth0' to bridge 'eth0'. With the linux bridge , the xen > scri

[ovs-discuss] 转发: bridge renaming issue with Xen

2012-03-08 Thread lv . erchun
Hi,all: I have a question about xen using ovs to ask for your advice. When Xen networking start , I want to rename the physical network adapter 'eth0' to 'peth0', and create a bridge 'eth0 ', add the port 'peth0' to bridge 'eth0'. With the linux bridge , the xen script 'network-bridge' work w

Re: [ovs-discuss] Installation problem on Ubuntu Oneiric

2012-03-08 Thread Ben Pfaff
On Sun, Feb 26, 2012 at 02:50:00PM -0800, Ben Pfaff wrote: > On Wed, Feb 22, 2012 at 09:42:23AM +0800, 胡靖飞 wrote: > > > > Hi, everyone,I have installed open vswitch according to INSTALL.Linux > > on Ubuntu Oneiric. And the open vswitch is in userspace. I have typed > > the commands in following st

Re: [ovs-discuss] How to connect two open vswitch bridges in a single physical host ?

2012-03-08 Thread Ben Pfaff
On Thu, Mar 08, 2012 at 02:11:35PM -0800, ABDULHAMID NOOR wrote: > I want to create three open vswitches to connect in > a circle to evaluate STP protcol. I want to do this on a single > physical host. I am using Virtual Box on Ubuntu 10.10. Use a patch port. See ovs-vswitchd.con

[ovs-discuss] How to connect two open vswitch bridges in a single physical host ?

2012-03-08 Thread ABDULHAMID NOOR
Dear All, I want to create three open vswitches to connect in a circle to evaluate STP protcol. I want to do this on a single physical host. I am using Virtual Box on Ubuntu 10.10. How to connect two open vswitch togather? I create TUN interface using the ip tuntap command, b

Re: [ovs-discuss] Netdev 'name' Uniqueness

2012-03-08 Thread Casey Barker
Thanks, Ben. That you've even considered this approach makes me feel better about implementing it in my baseline for now. I'll ponder a longer-term solution, too... From an Openflow perspective, the pinch point seems to be that the netdev name is treated as equivalent to the Openflow port name.

Re: [ovs-discuss] rate limiting is not working on Openvswitch

2012-03-08 Thread Gurucharan Shetty
On Thu, Mar 8, 2012 at 10:53 AM, ANAND AKELLA wrote: > Hi Gurucharan, > Thanks for the information. I'm facing issue in executing the following > command. > > praveen@ubuntu:~$ sudo ovs-ofctl add-flow br0 actions=NORMAL > ovs-ofctl: br0 is not a bridge or a socket In client1 "br0" is the name of

Re: [ovs-discuss] Netdev 'name' Uniqueness

2012-03-08 Thread Ben Pfaff
On Thu, Mar 08, 2012 at 11:12:58AM -0800, Casey Barker wrote: > I'm experimenting with running multiple ofproto instances from within a > single process, where Open vSwitch is linked as a library, and the > datapaths operate outside the kernel. These ofproto instances are > completely independent

[ovs-discuss] Netdev 'name' Uniqueness

2012-03-08 Thread Casey Barker
I'm experimenting with running multiple ofproto instances from within a single process, where Open vSwitch is linked as a library, and the datapaths operate outside the kernel. These ofproto instances are completely independent of each other, each representing a separate logical switching entity.

Re: [ovs-discuss] rate limiting is not working on Openvswitch

2012-03-08 Thread ANAND AKELLA
Hi Gurucharan, Thanks for the information. I'm facing issue in executing the following command. praveen@ubuntu:~$ sudo ovs-ofctl add-flow br0 actions=NORMAL ovs-ofctl: br0 is not a bridge or a socket I was able to set the qos enqueue commands as specified in the below email. sudo ovs-vsctl -- se

Re: [ovs-discuss] KVM + openvswitch : device tap could not be initialized

2012-03-08 Thread Ben Pfaff
On Wed, Mar 07, 2012 at 10:59:50PM -0800, sumit sengupta wrote: > hi all, > > I'm trying to use openvswitch with kvm in Ubuntu latest version following the > commands in INSTALL.KVM file but when I try to run the kvm command, it fails > with error "Device 'tap' could not be initialized". Fyi, I

Re: [ovs-discuss] accepting OFPP_CONTROLLER as packet_out.in_port?

2012-03-08 Thread Ben Pfaff
On Thu, Mar 08, 2012 at 08:23:16AM -0800, Rob Sherwood wrote: > I've seen a bunch of mail about issues that controller folks > (particularly using nox) have run into when they send packet_out's > with the in_port field being set to OFPP_CONTROLLER instead of > OFPP_NONE. In particular, OVS chooses

Re: [ovs-discuss] Switch architecture of OVS userspace switch

2012-03-08 Thread Ben Pfaff
What is "the output ports list" and "the input ports list"? I don't know what list (lists?) you mean. On Thu, Mar 08, 2012 at 08:35:38PM +0800, HuJingfei wrote: > > Thanks, Ben,Exactly speaking, it's the loop of function > dpif_netdev_run() that does the packets scheduling. Now, I know that > th

[ovs-discuss] accepting OFPP_CONTROLLER as packet_out.in_port?

2012-03-08 Thread Rob Sherwood
Hello, I've seen a bunch of mail about issues that controller folks (particularly using nox) have run into when they send packet_out's with the in_port field being set to OFPP_CONTROLLER instead of OFPP_NONE. In particular, OVS chooses to reject packet_out's of this form. Now, I completely agree

Re: [ovs-discuss] Switch architecture of OVS userspace switch

2012-03-08 Thread HuJingfei
Thanks, Ben,Exactly speaking, it's the loop of function dpif_netdev_run() that does the packets scheduling. Now, I know that the next procedure of normal process is: dpif_netdev_run() -> dp_netdev_port_input() -> dp_netdev_execute_actions() -> dp_netdev_output_port()But what confuses me is tha