Re: [Ryu-devel] Extracting the dst_mac and out_pot from flowstats

2018-07-15 Thread rahul b
Hi, You can access it as follows. stat.match.get('eth_dst',None) or stat.match['eth_dst'] its a dictionary, so it applies to other keys as well. Thanks, Rahul On Fri, Jul 13, 2018 at 4:45 PM, knet solutions wrote: > Hi, > > From the EventOFPFlowStatsReply, > > I am trying to extract the dst_m

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] [PATCH] gui_topology: Avoid wildcard URL matching

2018-07-15 Thread FUJITA Tomonori
On Wed, 11 Jul 2018 13:51:48 +0900 IWAMOTO Toshihiro wrote: > GUIServerController eats up the entire URL space and sometimes causes > problems. See the following thread in ryu-devel for example: > > https://sourceforge.net/p/ryu/mailman/message/36312411/ > > Signed-off-by: IWAMOTO Toshihiro >

Re: [Ryu-devel] [PATCH] switch.tester: Fix name shadowing

2018-07-15 Thread FUJITA Tomonori
On Thu, 12 Jul 2018 12:29:35 +0900 IWAMOTO Toshihiro wrote: > tester.py imported all the classes from the packet library at the top level > namespace. This commit adds CLSNAME_ALIASES dict so that those classes > with the same names can be imported as different names. > This fixes an issue report