Re: [Ryu-devel] vlan matching problem

2014-04-01 Thread Dong Mo
Thanks it works now -Mo 2014-04-02 1:13 GMT-05:00 YAMAMOTO Takashi : > > Hi, > > It seems that I encountered a strange problem about vlan_vid, I am using > > OF1.3 parser > > > > The topology is this > > > > Switch-1 Switch-2 > > > > I use the following code to set up a flow to match dl_vla

[Ryu-devel] Mark packets with vlan ID

2014-04-01 Thread Windhya Rankothge
Hi all, I have following topology in mininet. h1 --- s1 --- s2 --- h2 ! h3 I want to mark the packets sent by a specific host and I am trying to use the vlan field.. I have added a flow in switch 1 saying, if the packets comes from h1, then add the vlan id =

Re: [Ryu-devel] Add a flow with two actions REST API

2014-04-01 Thread Windhya Rankothge
Thank you and it is working On Wed, Apr 2, 2014 at 2:26 AM, Yuichi Ito wrote: > Hi, please try this. > > {"cookie":"1","dpid":"1", > "match { "dl_type":"2048", > "nw_proto":"1", > "priority":"5", > "nw_src":"10.0.0.1", > "nw_dst":"10.0.0.5"

Re: [Ryu-devel] vlan matching problem

2014-04-01 Thread YAMAMOTO Takashi
> Hi, > It seems that I encountered a strange problem about vlan_vid, I am using > OF1.3 parser > > The topology is this > > Switch-1 Switch-2 > > I use the following code to set up a flow to match dl_vlan=1 on switch 2 > == > match = parser.OFPMatch(vlan_vid=1) please try:

[Ryu-devel] vlan matching problem

2014-04-01 Thread Dong Mo
Hi, It seems that I encountered a strange problem about vlan_vid, I am using OF1.3 parser The topology is this Switch-1 Switch-2 I use the following code to set up a flow to match dl_vlan=1 on switch 2 == match = parser.OFPMatch(vlan_vid=1) actions = [parser.OFPActionSet

Re: [Ryu-devel] [PATCH 06/11] RyuApp: allow observing events without having handlers

2014-04-01 Thread FUJITA Tomonori
On Wed, 2 Apr 2014 13:11:49 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >> On Wed, 26 Mar 2014 15:39:30 +0900 (JST) >> [email protected] (YAMAMOTO Takashi) wrote: >> On Wed, 26 Mar 2014 14:13:24 +0900 (JST) [email protected] (YAMAMOTO Takashi) wrote: >>

Re: [Ryu-devel] [PATCH 06/11] RyuApp: allow observing events without having handlers

2014-04-01 Thread YAMAMOTO Takashi
> On Wed, 26 Mar 2014 15:39:30 +0900 (JST) > [email protected] (YAMAMOTO Takashi) wrote: > >>> On Wed, 26 Mar 2014 14:13:24 +0900 (JST) >>> [email protected] (YAMAMOTO Takashi) wrote: >>> > On Wed, 26 Mar 2014 14:00:07 +0900 (JST) > [email protected] (YAMAMOTO Takashi) wrot

[Ryu-devel] Ryu 3.8 released

2014-04-01 Thread FUJITA Tomonori
Hi, Here is a new release. It includes full OF1.4 support, the REST API improvement, OF switch tests for the meter feature, and BGP daemon feature. = FUJITA Tomonori (5): of: set TCP_NODELAY for secure channel socket remove ryu.cmd.ofa_neutron_agent from console_scripts in setup.cfg

Re: [Ryu-devel] Add a flow with two actions REST API

2014-04-01 Thread Yuichi Ito
Hi, please try this. {"cookie":"1","dpid":"1", "match { "dl_type":"2048", "nw_proto":"1", "priority":"5", "nw_src":"10.0.0.1", "nw_dst":"10.0.0.5", "in_port":"1"}, "actions":[{"type":"OUTPUT","port":"2"}, {"type":"SET

[Ryu-devel] Ryu+ DevStack Havana (single node setup)

2014-04-01 Thread arjun jayaprakash
Hi, Environment: Ubuntu 13.10 + Ryu+ DevStack Havana (single node setup). Need to use a VM as a proxy to examine packets before forwarding them to original destination. Packet will be rerouted to Proxy VM using Ryu SDN. [VM1] --> [Proxy VM] --> [VM2]. However, anti-spoofing rules prevent me to do

Re: [Ryu-devel] Ryu Link/Topology

2014-04-01 Thread YAMAMOTO Takashi
> could you elaborate a little bit more how to make switches report lldp > speaking neighbors? > Do I need to change lldp_parse function or something else? yes, it would be the first step. YAMAMOTO Takashi > > Thanks > -Mo > > > > 2014-04-01 0:39 GMT-05:00 FUJITA Tomonori : > >> On Tue, 1

[Ryu-devel] machinise

2014-04-01 Thread Vanek Ennist
e, that gir Ane, will you dine with me at the Bohemians on Friday? I want you to hear-- Vane. The Bohemians? Impossible! Fitzgerald. You'll see life, at any rate. Vane. My dear fellow, I _have_ seen life. _Don't_ ask me to see it again. It is a painful spectacle. Adieu! (_Exit._) Miss Macfarla

Re: [Ryu-devel] Ryu Link/Topology

2014-04-01 Thread Dong Mo
could you elaborate a little bit more how to make switches report lldp speaking neighbors? Do I need to change lldp_parse function or something else? Thanks -Mo 2014-04-01 0:39 GMT-05:00 FUJITA Tomonori : > On Tue, 1 Apr 2014 14:01:52 +0900 (JST) > [email protected] (YAMAMOTO Takashi) wr

[Ryu-devel] Add a flow with two actions REST API

2014-04-01 Thread Windhya Rankothge
Hi all, I am trying to add a flow with two actions : "OUTPUT and SET_VLAN_VID. Following is the part of the string I pass with Curl.. {"cookie":"1","dpid":"1", "match { "dl_type":"2048", "nw_proto":"1", "priority":"5", "nw_src":"10.0.0.1", "n

Re: [Ryu-devel] [ANNOUNCE] BGP daemon code release

2014-04-01 Thread FUJITA Tomonori
On Mon, 31 Mar 2014 20:31:58 +0900 FUJITA Tomonori wrote: > NTT lab Ryu team has released BGP daemon code for Ryu project: > > https://github.com/fujita/ryu/tree/bgp Merged. FUJITA Tomonori (2): add BGP daemon feature bgp: fix pep8 ISHIDA Wataru (9): bgp: fix wrong path