Re: [Ryu-devel] All the links of the topology not getting discovered.

2018-03-23 Thread Taha Khan
Thanks for the reply. But do you have any rough idea, how many links should a topology have to not hit performance limit? This is my systems specs. I need EventLinkAdd and EventLinkDelete to work properly as I am planning to introduce multiple link failures from mininet. I started with 62 nodes,

Re: [Ryu-devel] Spliting flows through two ports

2018-03-23 Thread Iwase Yusuke
Hi Carlos, What does "split flows" exactly mean? > req = parser.OFPGroupMod(datapath, ofp.OFPFC_ADD, ofp.OFPGT_SELECT, > group_id, buckets) If you specify OFPGT_SELECT, switch will execute "one" bucket in the group and not copied like the port mirroring. If you intend

Re: [Ryu-devel] Informing the controller about the first switch Datapath and port number which connected to the host.

2018-03-23 Thread Iwase Yusuke
Hi Soliman, "ryu.topology" provides such feature, I guess. How about the following APIs and events? https://github.com/osrg/ryu/blob/master/ryu/topology/api.py#L38-L44 https://github.com/osrg/ryu/blob/e6773539b546576c13f7397769d2001c46bbfdaa/ryu/topology/event.py#L169-L186 If you want to

Re: [Ryu-devel] Running multiple controllers

2018-03-23 Thread Iwase Yusuke
Hi, I think this issue is a problem of Mininet not Ryu. I found the similar script on Mininet's GitHub, but I don't know further. https://github.com/mininet/mininet/blob/master/examples/controllers2.py Thanks, Iwase On 2018年03月21日 00:05, Soliman Awad Alshra´a Abdullah TU Ilmenau wrote: Hello

Re: [Ryu-devel] All the links of the topology not getting discovered.

2018-03-23 Thread Iwase Yusuke
Hi Taha, IIRC, the similar problems had reported before on this mailing list. I think you hit the performance limit of "single" controller in order to use topology discovery feature against such many switches. For handling such large topology, how about splitting your topology into some

Re: [Ryu-devel] Simulation for flow-table attack using ryu

2018-03-23 Thread Fujimoto Satoshi
Hi, Thank you for the information! In my environment, the simulation completed successfully. I think your problem is lack of resource, especially CPU performance. While Monitoring resource, CPU usage eventually reached 100%, but Memory usage has hardly changed. My CPU is : Intel(R) Core(TM)

[Ryu-devel] All the links of the topology not getting discovered.

2018-03-23 Thread Taha Khan
Hi I am using RYU-4.23 and Mininet OVS. I have a 62 Node topology. When I run my RYU application I noticed that RYU is not able to discover all the datapaths and links everytime I run my code. And also when I run (link down command ) in mininet CLI, EventLinkDelete is not getting triggered

[Ryu-devel] Create or Upgrade Website To Drive More Traffic (NX3)

2018-03-23 Thread Gina Smith via Ryu-devel
Hello, Have you been looking for a team of professional website developers and graphic designers that can handle your website design and development without delay? We are right here for you. With several years of experience in software, design and website solutions to our growing clients on a

Re: [Ryu-devel] BGP Usecase

2018-03-23 Thread Pedro Andres Aranda Gutierrez
Hi Suresh, I see two use cases: 1.- Have an SDN domain look like a BGP router, for example, a central office that grooms end-users and interacts with the ISP's infrastructure 2.- Researchy kind of things like using BGP-4 for a possible East-West interface between SDN domains, /PA On 23 March

Re: [Ryu-devel] BGP Usecase

2018-03-23 Thread knet solutions
Hi PA, Thanks for the response. Regarding use case1 (1.- Have an SDN domain look like a BGP router, for example, a central office that grooms end-users and interacts with the ISP's infrastructure), SDN controller(app) is act as a BGP router, establishes the neighbor relation ships with one

[Ryu-devel] Disable/Enable switch port with ryu

2018-03-23 Thread Valson Pereira
Hi everyone; How i can disable/enable a specific swicth port with ryu? Thanks. -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org!

[Ryu-devel] 信誉开票

2018-03-23 Thread 扬小姐
你好!本公司可以代理全国各地区增值税专用发票,普通增值税发票,点数优惠,真实有效验证后付款,需要联系:13670062475杨云(经理)微信同号:13670062475 信誉开票 诚信开票 长期合作愉快 -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org!

[Ryu-devel] 转发:新任管理者如何自我提升

2018-03-23 Thread 鞠�u光
ryu-devel@lists.sourceforge.net 73571 ¸½.¼þ.ÄÚ.ÈÝ.Çë.²é.ÔÄ <> -- Check out the vibrant tech community on one of the world's most engaging tech sites, Slashdot.org!

[Ryu-devel] ryu-devel:如何培养整个公司的质量意识? 65487

2018-03-23 Thread cohjnk
研发质量管理 【时间地点】2018年3月26-27日 北京 确定开课 燕山酒店 3月29-30日 上海 确定开课 中祥酒店 【参加对象】企业CEO/总经理、研发总经理/副总、公司总工/技术总监、公司人力资源总监、研发总经理/副总、质量部经理、QA经理、PMO(项目管理办公室)主任、测试经理等 【学习费用】2800/人 【垂询热线】021-31006787,1338160100许先生 【QQ/ 微信】320588808 课程背景:

Re: [Ryu-devel] Spliting flows through two ports

2018-03-23 Thread Jose Carlos Ferreira de Melo Junior
Hey Iwase, Split means really divide the flow I dont know if would be like a load balancing (I think it is) For example the image below But I dont know if this would be possible using the group table. 2018-03-23 4:04 GMT-03:00 Iwase Yusuke : > Hi Carlos, > > What