Re: [ovs-discuss] problem in multiple bridge creation

2013-07-10 Thread Andy Zhou
Adding back the mailing list. I did not see anything obvious. It works on my system with head of the master build. You may try to go through document. http://git.openvswitch.org/cgi-bin/gitweb.cgi?p=openvswitch;a=blob_plain;f=INSTALL.userspace;hb=HEAD In case the problem is still not resolved, p

Re: [ovs-discuss] vm can't ping over ovs gre port

2013-07-10 Thread JinHwan Hwang
Thank you for your attention to this matter. I finally find source of the problem! After you show me how to approach, i look over all the thing with the greatest care. Mac address of two VM were same, And it caused all problem. Weird things about this problem was that there were ARP responses at ho

[ovs-discuss] problem in multiple bridge creation

2013-07-10 Thread Prashant Chougule
hi.., I am trying to create multiple bridges like s1,s2,and s3 having 3 ethernet ports with 3 different ip address for e.x. i have 3 ethernet ports eth0,eth1 and eth2 and want to assign ip address to created bridges s1, s2 and s3 respectively but after s1 creation it fails gives me error l

[ovs-discuss] open flow vlan

2013-07-10 Thread vis reddy
Hello All Currently most of switch vendors support hybrid mode, where  port can belong to open flow vlan and non open flow vlan  the untagged packet matching the flow can be tagged with the open flow vlan while egressing? Thanks Vishnu___ discuss mailin

Re: [ovs-discuss] Need help on redirecting vxlan flow depending on tunnel id.

2013-07-10 Thread roampune
On Wed, Jul 10, 2013 at 3:05 PM, Ben Pfaff wrote: > On Wed, Jul 10, 2013 at 03:01:24PM -0700, roampune wrote: > > Hi Guys, > > > > I am new to openvswitch here, and was trying to redirect a vxlan flow > > depending on tunnel id. > > > > my setup is a two bridge setup where bridge2 has vxlan tunne

Re: [ovs-discuss] Need help on redirecting vxlan flow depending on tunnel id.

2013-07-10 Thread Ben Pfaff
On Wed, Jul 10, 2013 at 03:01:24PM -0700, roampune wrote: > Hi Guys, > > I am new to openvswitch here, and was trying to redirect a vxlan flow > depending on tunnel id. > > my setup is a two bridge setup where bridge2 has vxlan tunnels with remote > ip set, and bridge1 (192.168.0.X) are directly

[ovs-discuss] Need help on redirecting vxlan flow depending on tunnel id.

2013-07-10 Thread roampune
Hi Guys, I am new to openvswitch here, and was trying to redirect a vxlan flow depending on tunnel id. my setup is a two bridge setup where bridge2 has vxlan tunnels with remote ip set, and bridge1 (192.168.0.X) are directly connected to each other. two nodes with tunnel setup using commands: 1)

[ovs-discuss] [OVS-CONNECTION-NOX-CONTROLLER] Not able to connect from OVS to NOX CONTROLLER

2013-07-10 Thread Basvaraj Kanti
*Hi,* *I have Install OpenVSwitch(openvswitch-1.10.0) in my fedora-17 and created bridge, Added port according INSTALL file and INSTALL.SSL says. Now i wanted to connect to NOX controller in Other Machine.* *TCP connection with NOX controller not happening. As i saw in the wireshark, packet wit

Re: [ovs-discuss] Running OVS in Userspace

2013-07-10 Thread Ben Pfaff
On Wed, Jul 10, 2013 at 04:45:06PM +0200, Benjamin Lunsky wrote: > In follow up to my previous question, I am having intermittent behaviour when > running OVS in user space… > > This is my setup script: > - > ovsdb-tool create /usr/local/etc/openvswi

[ovs-discuss] Running OVS in Userspace

2013-07-10 Thread Benjamin Lunsky
In follow up to my previous question, I am having intermittent behaviour when running OVS in user space… This is my setup script: - ovsdb-tool create /usr/local/etc/openvswitch/conf.db vswitchd/vswitch.ovsschema ovsdb-server /usr/local/etc

Re: [ovs-discuss] Help in understanding the code

2013-07-10 Thread Andy Zhou
The remaining icmp packets are indeed processed in the kernel (via ovs_dp_process_received_packet()). ovs-vswitchd will install a flow entry in the kernel to handle those packets. You can inspect kernel flows with "ovs-dpctl dump-flows". VLOG_INFO is only for user space programs. I am surprised it

[ovs-discuss] Help in understanding the code

2013-07-10 Thread sujith p s
Hi everyone! I'm a newcomer to OpenvSwitch. I installed it in mininet-VM using the INSTALL guide provided. I am curious to understand the flow of the code in case of ping. Example topology: $ sudo mn --switch=ovsk --topo linear h1 -- s1 -- s2 -- h2 command: mininet> h1 ping -c5 h2 ofproto_run