[ovs-discuss] Information on the Open vSwitch Hackathon, March 2014

2014-03-24 Thread Kyle Mestery
Welcome to the Open vSwitch Hackathon March 2014! The response to the hackathon has been phenomenal, with 55 people signed up to attend in person and almost 100 signed up remotely, so we need to have a plan to make the most of our time. Here is some information to help everyone get the most out of

Re: [ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread Ben Pfaff
I won't say it's impossible for there to be a switch bug here. In-band control is tricky, and maybe we've screwed it up. But we need more analysis before we can say that there's a bug or exactly what it is. I'm happy to hear some details later when Filipe or someone else has looked more closely a

Re: [ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread Brent Salisbury
Echoing what Ben said, the issue will certainly be on the controller or configuration issue with the fabric the control channel is on (loops etc). I would forward the email along with logs from the OSGI console or the /logging directory to controller-...@lists.opendaylight.org Alternatively you ca

Re: [ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread Ben Pfaff
It seems likely that the controller is doing something that kills the connection. On Mon, Mar 24, 2014 at 05:30:19PM +, filipe Antonio wrote: > Hi, > > Those are the logs I get, > > 2014-03-24T16:43:52.127Z|04226|rconn|INFO|of-switch<->tcp:192.168.0.253:6633: > connected > 2014-03-24T16:43:5

Re: [ovs-discuss] Set-field cannot update read-only actions on OVS

2014-03-24 Thread Ben Pfaff
On Mon, Mar 24, 2014 at 10:34:37PM +0530, Krish wrote: > Please refer link: https://bugs.opendaylight.org/show_bug.cgi?id=381 where > the original bug was filed. > > Description: > = > > We cannot use set-field action for: > ETH_TYPE > ICMPV4_TYPE > ICMPV4_CODE > ARP_OP > ARP_SPA > ARP_TP

Re: [ovs-discuss] How to specify "local" action in ovs-ofctl add-flow command

2014-03-24 Thread Olivier Tilmans
I believe the local action is the same than the normal one: you simply append local/normal to your action list (skipping the output: part) like this: sudo ovs-ofctl --strict add-flow $BR priority=100,hard_timeout=0,tcp,nw_src=$IP2,actions=mod_nw_src=$IP1,local I guess that if you want to stick wi

Re: [ovs-discuss] Compiling OVS to be used with UML

2014-03-24 Thread Olivier Tilmans
The module gets loaded properly after adding myself 'phy_base = 0;' (which is the value it has on most arch) right after the include's in datapath/linux/compat/skbuff-openvswitch.c I also compiled the kernel myself and I compile OVS from a running instance of that kernel to make sure that I use the

Re: [ovs-discuss] Error during installation: 'IPV6_ADDR_RESERVED' undeclared (first use in this function)

2014-03-24 Thread Jesse Gross
On Thu, Mar 20, 2014 at 3:40 AM, Slavica Tomovic wrote: > Hello guys, > > I am having problem with OpenVSwitch installation my CentOS 5.5. I > used this commands: > > $ wget http://openvswitch.org/releases/openvswitch-1.1.0pre2.tar.gz > $ tar zxvf openvswitch-1.1.0pre2.tar.gz > $ cd openvswitc

[ovs-discuss] Set-field cannot update read-only actions on OVS

2014-03-24 Thread Krish
Please refer link: https://bugs.opendaylight.org/show_bug.cgi?id=381 where the original bug was filed. Description: = We cannot use set-field action for: ETH_TYPE ICMPV4_TYPE ICMPV4_CODE ARP_OP ARP_SPA ARP_TPA ARP_SHA ARP_THA IPV6_FLABEL ICMPV6_TYPE ICMPV6_CODE IPV6_ND_TARGET IPV6_ND_SLL

Re: [ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread filipe Antonio
Hi, Those are the logs I get, 2014-03-24T16:43:52.127Z|04226|rconn|INFO|of-switch<->tcp:192.168.0.253:6633: connected 2014-03-24T16:43:52.162Z|04227|fail_open|WARN|No longer in fail-open mode 2014-03-24T16:44:02.122Z|04228|rconn|ERR|of-switch<->tcp:192.168.0.253:6633: no response to inactivity pr

Re: [ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread Ben Pfaff
On Mon, Mar 24, 2014 at 03:57:55PM +, filipe Antonio wrote: > My LAN has two openvswitch and an ODL controller. I run the command > ovs-vsctl set controller in each openvswitch to connect to the > controller, with success. I can visualize the network in ODL. When I > run repeatedly the command

[ovs-discuss] Controller Connection openvswitch

2014-03-24 Thread filipe Antonio
Hi, My LAN has two openvswitch and an ODL controller. I run the command ovs-vsctl set controller in each openvswitch to connect to the controller, with success. I can visualize the network in ODL. When I run repeatedly the command *List Controller* in the console of one of the openvswitch, the

Re: [ovs-discuss] How to specify "local" action in ovs-ofctl add-flow command

2014-03-24 Thread Ben Pfaff
On Mon, Mar 24, 2014 at 04:24:57PM +0530, Ramana Reddy wrote: > The following command throwing error while adding the flow: > sudo ovs-ofctl --strict add-flow $BR > priority=100,hard_timeout=0,tcp,nw_src=$IP2,actions=mod_nw_src=$IP1,output:local > > Error is: ovs-ofctl: invalid numeric format loca

[ovs-discuss] How to specify "local" action in ovs-ofctl add-flow command

2014-03-24 Thread Ramana Reddy
The following command throwing error while adding the flow: sudo ovs-ofctl --strict add-flow $BR priority=100,hard_timeout=0,tcp,nw_src=$IP2,actions=mod_nw_src=$IP1,output:local Error is: ovs-ofctl: invalid numeric format local Thanks, Ramana. ___ discu

[ovs-discuss] How to set queue min-rate to 0?

2014-03-24 Thread Alex Reyes
Hi guys, When I try to create queue with: sudo ovs-vsctl -- set port eth0 qos=@newqos -- --id=@newqos create qos type=linux-htb other-config:max-rate=1000 queues=0=@q0,1=@q1 -- --id=@q0 create queue other-config:min-rate=800 other-config:max-rate=800 -- --id=@q1 create queue other-con

Re: [ovs-discuss] difference between normal and local

2014-03-24 Thread Justin Pettit
John Thoe wrote: What is the difference between NORMAL and LOCAL action in OVS?? The "normal" action does "normal" L2 processing (learn MAC addresses and forward appropriately to ports attached to the bridge). The "local" action sends packets to the