[Ryu-devel] [PATCH] set default attributes for OFPPortMod

2014-05-07 Thread Yuichi Ito
Signed-off-by: Yuichi Ito --- ryu/ofproto/ofproto_v1_0_parser.py |3 ++- ryu/ofproto/ofproto_v1_2_parser.py |3 ++- ryu/ofproto/ofproto_v1_3_parser.py |3 ++- ryu/ofproto/ofproto_v1_4_parser.py |5 +++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/ryu/ofproto/of

[Ryu-devel] [PATCH 3/3] sw test tool: pylint

2014-05-07 Thread Yuichi Ito
W:546,14: Access to a protected member _send_msg of a client class (protected-access) Signed-off-by: Yuichi Ito --- ryu/tests/switch/tester.py | 24 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py

[Ryu-devel] [PATCH 2/3] sw test tool: Remove unused codes

2014-05-07 Thread Yuichi Ito
Signed-off-by: Yuichi Ito --- ryu/tests/switch/tester.py | 23 ++- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py index 68d0ec8..135b036 100644 --- a/ryu/tests/switch/tester.py +++ b/ryu/tests/switch/te

[Ryu-devel] [PATCH 1/3] sw test tool: Reduce similar methods

2014-05-07 Thread Yuichi Ito
- _test_flow_install() - _test_meter_install() are merged as - _test_msg_install() Signed-off-by: Yuichi Ito --- ryu/tests/switch/tester.py | 24 ++-- 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/ryu/tests/switch/tester.py b/ryu/tests/switch/tester.py

[Ryu-devel] [PATCH 0/3] sw test tool: refine codes

2014-05-07 Thread Yuichi Ito
Yuichi Ito (3): sw test tool: Reduce similar methods sw test tool: Remove unused codes sw test tool: pylint ryu/tests/switch/tester.py | 69 +--- 1 file changed, 27 insertions(+), 42 deletions(-) -- 1.7.10.4 --

[Ryu-devel] This is Very Important

2014-05-07 Thread M/S . S&H Corporation
Title: New Page 1 Compliment of the day, I am aware of the unsafe nature of the internet, and was compelled to use this medium due to the nature of this project. I am a project coordinator with an oil & Gas consortium I have access to very vital information that can be used to transfer a

Re: [Ryu-devel] I'm not seeing flow_removed msgs

2014-05-07 Thread Nitin Sharma
Do you have the OFPFF_SEND_FLOW_REM flag set on the flow entries that you intend to receive Flow removed msg from? Nitin Sharma On Wed, May 7, 2014 at 5:50 AM, Ricardo Schmidt wrote: > Hi all, > > I'm trying some first steps with Ryu and a Pica8 openflow switch (running > open vswitch). I run t

[Ryu-devel] Get DPID for IP-Address

2014-05-07 Thread Benjamin Eggerstedt
Hi Ryu Team, First of all I'd like to introduce myself to the members of the mailing list. My name is Benjamin Eggerstedt and I'm working for Alcatel-Lucent Enterprise in Germany. I went through different SDN controllers (POX, Floodlight, now Ryu) and chose Ryu to be the one that I want to focus

[Ryu-devel] I'm not seeing flow_removed msgs

2014-05-07 Thread Ricardo Schmidt
Hi all, I'm trying some first steps with Ryu and a Pica8 openflow switch (running open vswitch). I run the testing application simple_switch_13.py that comes with Ryu package. I see packet_in msgs and I'm able to alter the timeouts of flow entries in the switch by simply changing values in the def

[Ryu-devel] DEBUG print statements in topology/switches

2014-05-07 Thread Karthik Sharma
I want to put some debug information inside the file ryu/topology/switches.py. Which of the following should I use? - LOG.debug() - print() - self.logger.info() Where can I see this debug information - in the console ? (should I use --verbose) - in some log file? (where?) Thanks & Regards,