Re: [Ryu-devel] Creating one server with multiple ports in OpenFlow controller

2015-08-07 Thread FUJITA Tomonori
On Tue, 04 Aug 2015 12:39:42 +0430 "mehran shetabi" wrote: > In Ryu, i want to create one server with multiple ports in my controller. > How can i do this? Ryu doesn't support such feature so you need to modify the code around: https://github.com/osrg/ryu/blob/master/ryu/controller/controller.

Re: [Ryu-devel] Ryu controller connectivity to Brocade Netiron CES2024c switch

2015-08-07 Thread FUJITA Tomonori
On Mon, 3 Aug 2015 17:42:15 -0500 siddharth gangadhar wrote: > We have Brocade Netiron CES2024c Openflow enabled switches as part of our > Openflow inventory. I was wondering if Ryu controller has teh ability to > support the switch? > > I tried using the Ryu Topology Viewer to check if the cont

Re: [Ryu-devel] [PATCH 2/2] Python 3: Fix search for bound methods

2015-08-07 Thread Fadi Moukayed
This small patchset restores the example applications within the app/* directory to a working condition under Python 3, with the exception of those depending on the still-unported OVS bindings (Sorry about the previous submission, I forgot to check it for PEP8 compliance). I would appreciate any f

Re: [Ryu-devel] LINC x RYU

2015-08-07 Thread Yusuke Iwase
Hi, The similar problem have been reported on LINC-Switch's GitHub. I think this is a bug of LINC-Switch. https://github.com/FlowForwarding/LINC-Switch/issues/333 Thanks, Iwase On 2015年08月06日 07:40, Edison Albuquerque wrote: > Hi. > I need help. > My LINC-Switch OpefFlow disconnects from RYU

[Ryu-devel] [PATCH 0/3] Related to 'B.18.1 Egress Tables' in OpenFlow 1.5 (REPOST)

2015-08-07 Thread Yusuke Iwase
I'm sorry the previous patches causes an conflict when merging against the current master branch. The following patches are resolved this conflict. (The previous messages) These patches are related to the updates of 'B.18.1 Egress Tables' EXT-306 and EXT-233 in OpenFlow 1.5. IWASE Yusuke (3): o

[Ryu-devel] [PATCH 4/4] test_parser: Add test case for OFP15 bundle_features request/reply

2015-08-07 Thread Yusuke Iwase
TODO: Because Open vSwitch (lib/ofp-util) does not support time scheduled bundles [EXT-340] yet, re-generate the packet data by using packet_data_generator2 when Open vSwitch supports it. Reference: OpenFlow 1.1+ support status of Open vSwitch https://github.com/openvswitch/ovs/blob/master/OPENFLO

[Ryu-devel] [PATCH 0/4] Related to 'B.18.11 Scheduled Bundles' in OpenFlow 1.5

2015-08-07 Thread Yusuke Iwase
These patches are related to the updates of 'B.18.11 Scheduled Bundles' (EXT-340) in OpenFlow 1.5. IWASE Yusuke (4): ofproto_v1_5_parser: Add OFPBundlePropTime support ofproto_v1_5_parser: Add OFPBundleFeaturesProp support ofproto_v1_5_parser: Add OFPBundleFeaturesStats support test_parser

[Ryu-devel] [PATCH 2/4] ofproto_v1_5_parser: Add OFPBundleFeaturesProp support

2015-08-07 Thread Yusuke Iwase
OpenFlow Spec 1.5 introduces bundle features properties to indicate the bundle-related features that are supported by the switch. This patch adds bundle features properties support. Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofproto_v1_5.py| 11 +++- ryu/ofproto/ofproto_v1_5_parse

[Ryu-devel] [PATCH 1/4] ofproto_v1_5_parser: Add OFPBundlePropTime support

2015-08-07 Thread Yusuke Iwase
OpenFlow Spec 1.5 introduces ofp_bundle_prop_time property which is used in scheduled bundles. This patch adds ofp_bundle_prop_time property support. Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofproto_v1_5_parser.py | 43 ++ 1 file changed, 43 insertions(+)

[Ryu-devel] [PATCH 1/3] ofproto_v1_5_parser: Add new table feature properties support

2015-08-07 Thread Yusuke Iwase
OpenFlow Spec 1.5 introduces new table feature properties as following. enum ofp_table_feature_prop_type { ... OFPTFPT_WRITE_COPYFIELD = 18, /* Write Copy-Field property. */ OFPTFPT_WRITE_COPYFIELD_MISS = 19, /* Write Copy-Field for table-miss. */ OFPTFPT_APPLY_COPYFIELD = 20, /*

[Ryu-devel] [PATCH 3/3] test_parser: Add test case for OFP15 table_features_request

2015-08-07 Thread Yusuke Iwase
TODO: Because Open vSwitch (lib/ofp-util) does not support Egress Tables [EXT-306] yet, re-generate the packet data by using packet_data_generator2 when Open vSwitch supports it. Reference: OpenFlow 1.1+ support status of Open vSwitch https://github.com/openvswitch/ovs/blob/master/OPENFLOW-1.1%2B.

[Ryu-devel] [PATCH 3/4] ofproto_v1_5_parser: Add OFPBundleFeaturesStats support

2015-08-07 Thread Yusuke Iwase
OpenFlow Spec 1.5 introduces bundle features request/reply messages to query a switch about its bundle capabilities. This patch adds bundle features request/reply messages support. Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofproto_v1_5_parser.py | 98 ++ 1

[Ryu-devel] [PATCH 2/3] ofproto_v1_5_parser: Support new OFPTableFeaturesStats structure

2015-08-07 Thread Yusuke Iwase
OpenFlow Spec 1.5 introduces a new ofp_table_features structures in accordance with table feature request commands for simpler table features updates. This patch fixes OFPTableFeaturesStats class to support the new structure of ofp_table_features. Signed-off-by: IWASE Yusuke --- ryu/ofproto/ofp