Re: [ovs-discuss] dec_ttl action doesn't work and sorry for multiple posts.

2014-02-03 Thread Justin Pettit
Does it properly decrement the TTL if you don't modify the TOS? Does it behave as you'd expect with OVS 2.0 (the latest release)? --Justin > On Feb 3, 2014, at 7:00 PM, Allan Jie wrote: > > I want to clarify the problem. And I don't why I cannot post that correctly. > > Now here is the thin

[ovs-discuss] dec_ttl action doesn't work and sorry for multiple posts.

2014-02-03 Thread Allan Jie
I want to clarify the problem. And I don't why I cannot post that correctly. Now here is the thing. I start a network like 4 host and 1 switches. h1,h2 and s1. I know the dec_ttl action is for ipv4 packet and openflow 1.1+. So I have finished this command. ovs-vsctl set bridge s1 protocols=OpenF

Re: [ovs-discuss] The action "dec_ttl" doesn't work

2014-02-03 Thread Allan Jie
Maybe I will try to clarify my problem again. My setup is very simple. Using Mininet to configure this network. h1 (h1-eth0)(s1-eth1)s1(s1-eth2)---(h1-eth0)h2. I start the network using this command. sudo mn --switch ovsk --mac --custom ~/mininet/custom/LinkCustom.py --topo mytopo BTW, I try t

Re: [ovs-discuss] Linus GIT Head OOPs reproducable in open vswitch when running mininet topology

2014-02-03 Thread Jesse Gross
On Fri, Jan 31, 2014 at 10:18 AM, Thomas Glanzmann wrote: >> Do you know if this happens with an older kernel or with a simpler topology? > > No, I don't. I just verified that the Ubuntu Mininet uses the > openvswitch kernel module from openvswitch and not the one that is > shipped with the kernel

Re: [ovs-discuss] encapsulation and MTUs (was: Re: Path MTU Discovery)

2014-02-03 Thread Jesse Gross
On Fri, Jan 31, 2014 at 11:20 AM, David Magda wrote: > On Thu, January 30, 2014 15:45, Jesse Gross wrote: >>> A particular detail: on which host (i.e, non-VM) interfaces does one >>> change the MTU for OpenStack? For example, on OS compute nodes, there is >>> the actual NIC (eth0), but also br-int

Re: [ovs-discuss] Performance of short-lived TCP sessions

2014-02-03 Thread McGarvey, Kevin
No problem, I figured you meant that. On 2/3/14 3:34 PM, "Justin Pettit" wrote: >On 2/3/14, 12:30 PM, "Justin Pettit" wrote: > >>On 2/3/14, 12:17 PM, "McGarvey, Kevin" wrote: >> >>>The TCP workload of a global DNS server consists of TCP sessions, each >>>with a single request and a response th

Re: [ovs-discuss] Performance of short-lived TCP sessions

2014-02-03 Thread Justin Pettit
On 2/3/14, 12:30 PM, "Justin Pettit" wrote: >On 2/3/14, 12:17 PM, "McGarvey, Kevin" wrote: > >>The TCP workload of a global DNS server consists of TCP sessions, each >>with a single request and a response that is typically under 2KB, and >>there is a very large number of source IPs. What level

Re: [ovs-discuss] Performance of short-lived TCP sessions

2014-02-03 Thread McGarvey, Kevin
That's good news. I'll test it. Kevin On 2/3/14 3:30 PM, "Justin Pettit" wrote: >On 2/3/14, 12:17 PM, "McGarvey, Kevin" wrote: > >>The TCP workload of a global DNS server consists of TCP sessions, each >>with a single request and a response that is typically under 2KB, and >>there is a very l

Re: [ovs-discuss] Performance of short-lived TCP sessions

2014-02-03 Thread Justin Pettit
On 2/3/14, 12:17 PM, "McGarvey, Kevin" wrote: >The TCP workload of a global DNS server consists of TCP sessions, each >with a single request and a response that is typically under 2KB, and >there is a very large number of source IPs. What level of performance, >expressed in terms of sessions per

[ovs-discuss] Performance of short-lived TCP sessions

2014-02-03 Thread McGarvey, Kevin
The TCP workload of a global DNS server consists of TCP sessions, each with a single request and a response that is typically under 2KB, and there is a very large number of source IPs. What level of performance, expressed in terms of sessions per second, would be expected from Open vSwitch with

Re: [ovs-discuss] ovs vxlan configuration

2014-02-03 Thread Kyle Mestery
On Feb 2, 2014, at 5:19 PM, Jesse Gross wrote: > On Sat, Feb 1, 2014 at 12:10 AM, Kanthi P wrote: >> Hi, >> >> I installed openvswitch-2.0.0 userspace and kmod rpms on fedora 19. I am >> trying vxlan configuration using ovs. >> >> My kernel version is 3.9.5-301.fc19.i686.PAE >> >> I created

Re: [ovs-discuss] Layer 1 Flow Rules in Datapath Problem

2014-02-03 Thread Jesse Gross
On Mon, Feb 3, 2014 at 5:36 AM, Anton Matsiuk wrote: > Dear all, > > I install Layer 1 Flow Rules (namely: Port 1 ->Port 2, Port 2 -> Port 1) > from Open Flow controller (as well as through ovs-ofctl): > ovs-ofctl add-flow br0 in_port=1,idle_timeout=0,actions=output:2 > I use 1000 test L4 UDP flow

Re: [ovs-discuss] Collapsing Flow Table Rules in ovs

2014-02-03 Thread Ben Pfaff
On Mon, Feb 03, 2014 at 10:59:49PM +0530, raghavan srivats wrote: > At the level of the dpif, table id does not seem to percolate through nor > does goto table or resubmit action in any form ; > and dpif seems to maintain a single table only. > This collapse of flow table rules spanning multiple t

[ovs-discuss] Collapsing Flow Table Rules in ovs

2014-02-03 Thread raghavan srivats
hi At the level of the dpif, table id does not seem to percolate through nor does goto table or resubmit action in any form ; and dpif seems to maintain a single table only. This collapse of flow table rules spanning multiple tables into a single rule in a single table is presumably by intent ? o

Re: [ovs-discuss] Purpose for wait ?

2014-02-03 Thread Joe Stringer
These functions schedule events to wake up the following poll_block() call. For instance, ovsdb-server should wake up next time we receive a JSON rpc message. At the end of the loop, there is a poll_block() call that will sleep until there is further work to do. On 3 February 2014 00:04, love yo

[ovs-discuss] MPLS Push/Pop kernel support on branch devel/mpls-v2.52

2014-02-03 Thread Raghu Vadapalli
Hi All, We are trying to get MPLS push/pop operations working with kernel support using openvswitch devel/mpls-v2.52 branch but having issues. please find the detailed description below and let us know if we are missing anything. We tried various combinations of --protocols=XX and --flow-format=

[ovs-discuss] Layer 1 Flow Rules in Datapath Problem

2014-02-03 Thread Anton Matsiuk
Dear all, I install Layer 1 Flow Rules (namely: Port 1 ->Port 2, Port 2 -> Port 1) from Open Flow controller (as well as through ovs-ofctl): ovs-ofctl add-flow br0 in_port=1,idle_timeout=0,actions=output:2 I use 1000 test L4 UDP flows (with various dst.ports) to test the Switch with 1000 of packet

[ovs-discuss] Purpose for wait ?

2014-02-03 Thread love you
Hi I have found following three functions get called in ovsdbserver.c. I didn't get the purpose why server is waiting. Can anyone elaborate the purpose for that ovsdb_jsonrpc_server_wait(jsonrpc); unixctl_server_wait(unixctl); ovsdb_trigger_wait(db, time_msec()); Regards