[Ryu-devel] Query

2019-11-28 Thread CNE KKU
Dear i am asking about any reference for using machine learning with ryu controller. thanks ___ Ryu-devel mailing list Ryu-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/ryu-devel

Re: [Ryu-devel] Query-on-LLDP

2019-06-13 Thread Yusuke Iwase
Hi, I faced the similar problem before and if I remember correctly, OVS drops the LLDP packets as the bridge mode in factions related to the STP (Spanning Tree Protocol). Sorry I forgot the detail for it, but the follow post seems to describe some points. https://www.dorm.org/blog/finally-a-worka

Re: [Ryu-devel] Query-on-LLDP

2019-06-13 Thread Wajahat Hussain Mir
Dear Yusuke, The topology which i have created is comprised of only *OVSSwitch* class. Now the *legacy nodes* which i have created have a *failmode attribute* value of *standalone* and they are not connected to the controller. As per the *tcpdump* used I noted that when the packet reaches from O

Re: [Ryu-devel] Query-on-LLDP

2019-06-12 Thread Yusuke Iwase
Hi, What does "legacy node" exactly mean? Cisco switch or Linux machine? As far as I know, some switches including Linux bridge do not transplant LLDP packets for a loop prevention mechanism. Please confirm which switch or node drops the packets first. Thanks, Iwase 2019年6月13日(木) 1:58 Wajahat

[Ryu-devel] Query-on-LLDP

2019-06-12 Thread Wajahat Hussain Mir
Hi, I have a query pertaining to *LLDP* (*ether-type = 0x88cc)*. When an *OpenFlow* switch forwards *LLDP* packet to a *legacy node* why the legacy node is unable to forward it. Is it because of non understanding of the protocol or is it on account of *TTL *field in the LLDP frame. Any help will

Re: [Ryu-devel] Query regarding Ryu

2018-09-04 Thread Vidhu Baggan
Dear Sir Appreciating your quick reply,I would certainly try these videos. Thanks and Regards On Sat, Dec 23, 2017, 6:13 AM Vidhu Baggan wrote: > Dear Sir > Kindly guide that can we modify bgp through Ryu. > Thanking you in anticipation. > Regards >

Re: [Ryu-devel] Query regarding Ryu

2018-09-04 Thread knet solutions
Hi Vidhu, 1) I have published two video tutorials in Youtube about RYU BGP Integration and demonstration , it may help you. https://www.youtube.com/watch?v=PEdc6uwNkr0&t=12s https://youtu.be/B_5qkEWEXKA 2) Also, There is RYU SDN Mini projects for students (FREE) available in udemy. It cover

Re: [Ryu-devel] Query regarding Ryu

2018-09-04 Thread Vidhu Baggan
Dear Sir I apologise for disturbing you then and now again but I am not able to run the following command in ryu : ryu/services/protocols/bgp/peer.py Kindly guide me the steps to be followed in ryu for running the above command. Thanking you in anticipation. Great Regards I On Mon, Dec 25, 2017

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-07-15 Thread FUJITA Tomonori
On Wed, 27 Jun 2018 16:50:41 +0900 Iwase Yusuke wrote: > From 14f48def88012f779ac30d2068e4c7c8b1948233 Mon Sep 17 00:00:00 2001 > From: IWASE Yusuke > Date: Wed, 27 Jun 2018 16:13:25 +0900 > Subject: [PATCH] BGPSpeaker: Enable to specify remote port for neighbor > > Currently, the remote port o

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-06-27 Thread IWAMOTO Toshihiro
On Wed, 27 Jun 2018 16:50:41 +0900, Iwase Yusuke wrote: > > [1 ] > Hi Suresh, > > Does your patch fix other problem at the following? > https://github.com/sureshkvl/ryu/commit/aebf3974d121134931d79805b35f8f252db9d7a5#diff-161a69adc7e5dd2fb041599033e9089bL1001 > > FYI, I made a similar patch for

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-06-27 Thread Iwase Yusuke
Hi Suresh, Does your patch fix other problem at the following? https://github.com/sureshkvl/ryu/commit/aebf3974d121134931d79805b35f8f252db9d7a5#diff-161a69adc7e5dd2fb041599033e9089bL1001 FYI, I made a similar patch for this issue. Please refer to the attached patch. Thanks, Iwase On 2018年06月26

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-06-25 Thread knet solutions
Hi IWAMOTO, I updated the changes in this commit (on top of your route reflector change) https://github.com/sureshkvl/ryu/commit/aebf3974d121134931d79805b35f8f252db9d7a5 Could you review? How to submit this in upstream?. Is it pull request or some other process? Thanks suresh On Thu, Jun 2

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-06-20 Thread IWAMOTO Toshihiro
On Thu, 21 Jun 2018 00:39:17 +0900, knet solutions wrote: > > [1 ] > [1.1 ] > In peer.py file, PEER port number is hard coded to BGP Port Num. > > peer_address = (self._neigh_conf.ip_address, > const.STD_BGP_SERVER_PORT_NUM) > > I think, it can

Re: [Ryu-devel] Query in Bgp neighbor_add api

2018-06-20 Thread knet solutions
In peer.py file, PEER port number is hard coded to BGP Port Num. peer_address = (self._neigh_conf.ip_address, const.STD_BGP_SERVER_PORT_NUM) I think, it can be configurable parameter from the API. On Wed, Jun 20, 2018 at 4:15 PM, knet solutions

[Ryu-devel] Query in Bgp neighbor_add api

2018-06-20 Thread knet solutions
Hi, neighbor_add api doesnot have the "port number" parameter. For examples Traditional BGP Router <---> RYU BGP Speaker (BGP runs in port 180) In the RYU BGP Speaker, bgp_speaker.neighbor_add(remote_router_id, remote_as) no option to specif

Re: [Ryu-devel] Query regarding Ryu

2018-06-13 Thread Iwase Yusuke
Hi Vidhu, Unfortunately, the Zebra integration feature is not documented yet. Please refer to the following sample application for the basic usage: https://github.com/osrg/ryu/blob/master/ryu/services/protocols/zebra/client/sample_dumper.py e.g.) Please note it might be required the "root" (or "

Re: [Ryu-devel] Query regarding Ryu

2018-06-13 Thread Vidhu Baggan
Dear Sir Appreciating your concern as I have already implemented BGP in Quagga but could not find the way out to connect BGP (Ryu) and Quagga . Kindly guide. Great Regards On Wed, Jun 13, 2018, 1:15 PM Iwase Yusuke wrote: > Hi Vidhu, > > Ryu BGP Speaker does not have data-plane to forward packe

Re: [Ryu-devel] Query regarding Ryu

2018-06-13 Thread Iwase Yusuke
Hi Vidhu, Ryu BGP Speaker does not have data-plane to forward packets. To implement forwarding rules, Ryu supposes to connect to some OpenFlow switches or Linux IP routing stack (like Zebra). So the approach to assign IP address to interface is depending on how to realize data-plane with Ryu, I g

Re: [Ryu-devel] Query BGP speaker

2018-06-12 Thread knet solutions
Thanks. the patch works fine. On Tue, Jun 12, 2018 at 11:38 AM, Iwase Yusuke wrote: > Hi, > > Hmmm... the current implementation seems not to suppose to have the locally > generated routes when configured itself as a Route Reflector. Only > supposed to > reflect the received routes. > > The atta

Re: [Ryu-devel] Query regarding Ryu

2018-06-12 Thread Vidhu Baggan
Dear Sir Kindly guide that in which file, we can assign IP addresses to interfaces in a RYU-BGP router. Thanking you in anticipation. *Vidhu Baggan* Associate Professor | School of Computer Sciences Chitkara Institute of Engineering & Technology . [image: Mail] CAMPUS Chandigarh - Patiala N

Re: [Ryu-devel] Query BGP speaker

2018-06-11 Thread Iwase Yusuke
Hi, Hmmm... the current implementation seems not to suppose to have the locally generated routes when configured itself as a Route Reflector. Only supposed to reflect the received routes. The attached patch fixes this problem? Thanks, Iwase On 2018年06月11日 20:36, knet solutions wrote: Hi Iwase

Re: [Ryu-devel] Query BGP speaker

2018-06-11 Thread knet solutions
Hi Iwase, When i configure route_reflector, RYU BGP Speaker couldnt establish the comminication with traditional bird router. My code snippet is as below, # code snippet self.bgp_speaker = BGPSpeaker(64511, router_id, ssh_console=True, ssh_po

Re: [Ryu-devel] Query BGP speaker

2018-05-30 Thread Iwase Yusuke
Hi, > All routers are same AS number. This means Ryu and other routers are connected with the iBGP(internal BGP) peering, right? On the iBGP, generally the received routes from other iBGP peers will not be advertised in order to avoid network loops. If you need to advertise the iBGP routers to o

[Ryu-devel] Query BGP speaker

2018-05-30 Thread knet solutions
Hi, I am building RYU SDN BGP Speaker as transit Router. The topology is as below, All routers are same AS number. Traditional BGP Router1-RYU BGP Speaker-- Traditional BGP Router2 Here 1. RYU BGP Speaker establishes neigbors with BGP Router1 and BGP Router2

[Ryu-devel] query get_flow_stats

2018-02-23 Thread knet solutions
Hi, I am using ofctl. get_flow_stats() to collect the flow statistics. Instead of getting all the flow details, I am interested only on specific flow stats(kind of filter). In the code, i see, i can pass "flow" param with few params. Query 1. can i query the match with regex?. Example: matc

Re: [Ryu-devel] Query regarding Ryu

2017-12-24 Thread Vidhu Baggan
Dear Sir Thanks a lot for your support . I hope I would be able to make of it. Regards On Dec 25, 2017 6:38 AM, "Iwase Yusuke" wrote: > Hi, > > You mean modifying the rules of the BGP state transition (BGP FSM)? > You need to original rules? > > Ryu maintains the FSM state at "ryu/services/pr

Re: [Ryu-devel] Query regarding Ryu

2017-12-24 Thread Iwase Yusuke
Hi, You mean modifying the rules of the BGP state transition (BGP FSM)? You need to original rules? Ryu maintains the FSM state at "ryu/services/protocols/bgp/peer.py", so you can modify the rules if writing your code on it. For example, Ryu will move on to ESTABLISHED state when received a KEE

Re: [Ryu-devel] Query regarding Ryu

2017-12-24 Thread Vidhu Baggan
Dear Sir Can we modify the connection states cycle of BGP. Thanking you in anticipation. Regards On Dec 25, 2017 6:06 AM, "Iwase Yusuke" wrote: > Hi, > > Could you be more specific? > What does "modify" exactly mean? > > Thanks, > Iwase > > On 2017年12月23日 09:43, Vidhu Baggan wrote: > >> Dear Sir

Re: [Ryu-devel] Query regarding Ryu

2017-12-24 Thread Iwase Yusuke
Hi, Could you be more specific? What does "modify" exactly mean? Thanks, Iwase On 2017年12月23日 09:43, Vidhu Baggan wrote: Dear Sir Kindly guide that can we modify bgp through Ryu. Thanking you in anticipation. Regards ---

[Ryu-devel] Query regarding Ryu

2017-12-22 Thread Vidhu Baggan
Dear Sir Kindly guide that can we modify bgp through Ryu. Thanking you in anticipation. Regards -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org! http://sdm.link/slashdot_

Re: [Ryu-devel] Query on REST API

2017-04-07 Thread Phani Siriki
gui_topology app includes topology and ofctl REST API apps. and queries /v1.0/topology/switches and /stats/switches are working fine when I run gui_topology app alone. On Fri, Apr 7, 2017 at 12:37 AM, Priyesh Kumar wrote: > You are starting gui_topology and tap app, which does not include > top

Re: [Ryu-devel] Query on REST API

2017-04-07 Thread Phani Siriki
Hi Fujimoto Sure. I will post my query to SDN Hub team :) Best Regards Phani On Thu, Apr 6, 2017 at 11:35 PM, Fujimoto Satoshi < satoshi.fujimo...@gmail.com> wrote: > Hi Phani, > > You seem to use tap.py (in sdnhub_apps), and it is not Ryu built-in module. > Do you use the SDN Hub VM image? > I

Re: [Ryu-devel] Query on REST API

2017-04-06 Thread Priyesh Kumar
You are starting gui_topology and tap app, which does not include topology and OF APIs. You need to start ryu.app.rest_topology and ryu.app.ofctl_rest for /v1.0/topology/switches and /stats/switches respectively. -- Chec

Re: [Ryu-devel] Query on REST API

2017-04-06 Thread Fujimoto Satoshi
Hi Phani, You seem to use tap.py (in sdnhub_apps), and it is not Ryu built-in module. Do you use the SDN Hub VM image? If so, how about contact with SDN Hub team? Thanks, Fujimoto On 2017年04月07日 12:56, Phani Siriki wrote: Hi All When I am trying to run two REST applications - gui_topology.py

[Ryu-devel] Query on REST API

2017-04-06 Thread Phani Siriki
Hi All When I am trying to run two REST applications - gui_topology.py and tap_rest.py using ryu-manager, all REST API calls are failing. ubuntu@sdnhubvm:~/ryu[20:46] (master)$ ./bin/ryu-manager ryu/app/gui_topology/gui_topology.py ryu/app/sdnhub_apps/tap_rest.py loading app ryu/app/gui_topology/

Re: [Ryu-devel] Query regarding the Statistics Trigger Instruction -- OFPInstructionStatTrigger

2016-09-25 Thread Iwase Yusuke
gt; Number of aggregated flow entries. > packet_count > Integer 64bit > Number of packets matched by a flow entry. > byte_count > Integer 64bit > Number of bytes matched by a flow entry. > > Thanks & Regards > Poonam Ghosh > Technical Architect > TCS > > > F

Re: [Ryu-devel] Query regarding the Statistics Trigger Instruction -- OFPInstructionStatTrigger

2016-09-23 Thread Poonam Ghosh
by a flow entry. byte_count Integer 64bit Number of bytes matched by a flow entry. Thanks & Regards Poonam Ghosh Technical Architect TCS From: Poonam Ghosh/BLR/TCS To: Ryu-devel , Iwase Yusuke Date: 09/22/2016 11:50 PM Subject:Re: [Ryu-devel] Query regarding the Statis

Re: [Ryu-devel] Query regarding the Statistics Trigger Instruction -- OFPInstructionStatTrigger

2016-09-22 Thread Poonam Ghosh
switch functionality. Thanks & Regards, Poonam Ghosh Technical Architect,TCS From: Iwase Yusuke To: poonam.gh...@tcs.com Cc: ryu-devel@lists.sourceforge.net Date: 09/22/2016 06:07 AM Subject:Re: [Ryu-devel] Query regarding the Statistics Trigger Instruc

Re: [Ryu-devel] Query regarding the Statistics Trigger Instruction -- OFPInstructionStatTrigger

2016-09-22 Thread Iwase Yusuke
Hi, On 2016年09月22日 17:08, Poonam Ghosh wrote: > Hello, > > We have been referring the RYU source code to understand the OF Specific > instructions primarily OFV1.1, OFV1.2, OFV1.3,OFV1.4 and OFV1.5. > Currently while simulating the tests with Instruction > OFPIT_STAT_TRIGGER(Specification EXT-

[Ryu-devel] Query regarding the Statistics Trigger Instruction -- OFPInstructionStatTrigger

2016-09-22 Thread Poonam Ghosh
Hello, We have been referring the RYU source code to understand the OF Specific instructions primarily OFV1.1, OFV1.2, OFV1.3,OFV1.4 and OFV1.5. Currently while simulating the tests with Instruction OFPIT_STAT_TRIGGER (Specification EXT-335) we got couple of Open points to understand more on the

Re: [Ryu-devel] Query regarding learning flow configuration

2016-07-26 Thread Shinpei Muraoka
Hi > This learning flow is not getting configured on the switch due to command syntax error. > There is some mistake with the command syntax. > > Could you please send me an example of a learning flow similar to what i have done ? or is it possible to point out the mistake in above syntax

[Ryu-devel] Query regarding learning flow configuration

2016-07-26 Thread Krishnamurthy Karthika
Hi Ryu Developers, Could you please help me with the following REST API query ? I need to configure a new learning flow on the switch through a new REST API with given input parameters. I took the json example given in the following path https://github.com/osrg/ryu/blob/a3c8c591d9e6fe1353f7ba5

Re: [Ryu-devel] Query regarding RYU controller support for specific OF 1.3 features

2013-10-31 Thread FUJITA Tomonori
Hi, On Thu, 31 Oct 2013 12:17:41 -0700 Fawad Shaikh wrote: > I was wondering if RYU supports the following OF 1.3 features? It should. Please report to the mailing list if you find something missing. -- Android is incr

[Ryu-devel] Query regarding RYU controller support for specific OF 1.3 features

2013-10-31 Thread Fawad Shaikh
Hi, I was wondering if RYU supports the following OF 1.3 features? 1) Multiple Controller 2) TTL Decrement 3) QOS (Metering) 4) QOS (Enqueue) 5) Port Group (Select) 6) QinQ 7) IPv6 8) QinQ (Inner Tag) 9) Port Group (Phase 2) 10) MPLS Thanks in advance, ~Fawad -