Re: [Ryu-devel] Issue with learning switch (OF 1.3)

2013-10-08 Thread Ramachandra Kasyap
Thank you, that worked. Used the updated file: https://github.com/yamt/LINC-Switch/blob/25aff5d9533c37474ae5a8ed16feb8f5246c81fa/scripts/ryu/l2_switch_v1_3.py Regards, Kasyap -- October Webinars: Code for Performance Free

Re: [Ryu-devel] Issue with learning switch (OF 1.3)

2013-10-08 Thread YAMAMOTO Takashi
thanks. i fixed a few bugs. please try this: https://github.com/FlowForwarding/LINC-Switch/pull/179 YAMAMOTO Takashi > Thanks for the response. Following is the console output when switch > connects to the controller: > > (linc@mininet-vm)1> 22:44:34.642 [info] Connected to controller > localh

Re: [Ryu-devel] Issue with learning switch (OF 1.3)

2013-10-08 Thread Ramachandra Kasyap
Thanks for the response. Following is the console output when switch connects to the controller: (linc@mininet-vm)1> 22:44:34.642 [info] Connected to controller localhost:6633/0 using OFP v4 22:44:34.651 [debug] Received message from the controller: {ofp_message,4,features_request,3545670527,{ofp_

[Ryu-devel] [PATCH] Register TCP_DST and UDP_DST headers in NXM

2013-10-08 Thread Can Zhang
Signed-off-by: Can Zhang --- ryu/ofproto/nx_match.py | 10 ++ 1 file changed, 10 insertions(+) diff --git a/ryu/ofproto/nx_match.py b/ryu/ofproto/nx_match.py index 40c98df..b575d9a 100644 --- a/ryu/ofproto/nx_match.py +++ b/ryu/ofproto/nx_match.py @@ -694,6 +694,16 @@ class MFTPSRC(MFFie

Re: [Ryu-devel] [PATCH 1/8] packet.bgp: appease pep8

2013-10-08 Thread FUJITA Tomonori
On Tue, 8 Oct 2013 15:29:33 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > --- > ryu/lib/packet/bgp.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ryu/lib/packet/bgp.py b/ryu/lib/packet/bgp.py > index 7e4d48a..7d09c92 100644 > --- a/ryu/lib/pack

Re: [Ryu-devel] [PATCH] of13: fix InstructionMeter parser

2013-10-08 Thread FUJITA Tomonori
On Tue, 08 Oct 2013 15:48:25 +0900 Atzm Watanabe wrote: > When using of1.3 meter, NameError is caused while parsing instructions. > > Signed-off-by: Atzm Watanabe > --- > ryu/ofproto/ofproto_v1_3_parser.py |2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) Good catch! Thanks, appli