[Ryu-devel] [PATCH v2 0/2] tox: Move dependencies installation to .travis.yml

2016-11-24 Thread IWASE Yusuke
This updates the previous patches in order to adapt to the update of upstream/master. Note: The following patches should be applied after: [PATCH 0/2] pip: Tests for requirements for pip install IWASE Yusuke (2): mrtlib: Add parser for MRT format [RFC6396] test_mrtlib: Add unit tests for MR

[Ryu-devel] [PATCH v2 1/2] mrtlib: Add parser for MRT format [RFC6396]

2016-11-24 Thread IWASE Yusuke
Signed-off-by: IWASE Yusuke --- ryu/lib/mrtlib.py | 1189 + 1 file changed, 1189 insertions(+) create mode 100644 ryu/lib/mrtlib.py diff --git a/ryu/lib/mrtlib.py b/ryu/lib/mrtlib.py new file mode 100644 index 000..dc2df7a --- /dev/null ++

[Ryu-devel] [PATCH v2 2/2] test_mrtlib: Add unit tests for MRT paser

2016-11-24 Thread IWASE Yusuke
Signed-off-by: IWASE Yusuke --- .../packet_data/mrt/rib.20161101._pick.bz2 | Bin 0 -> 271 bytes .../packet_data/mrt/updates.20161101..bz2 | Bin 0 -> 20939 bytes ryu/tests/unit/lib/test_mrtlib.py | 761 + 3 files changed, 761 insertions(+) c

Re: [Ryu-devel] Deleting a single flow entry

2016-11-24 Thread Iwase Yusuke
Hi, On 2016年11月25日 00:02, Aqsa Malik wrote: > Hi Iwase, > > Thank you so much. I had no idea I had to define all the match entries like > that. However it is not working for me for some reason, my flow is still > there. Hummm... if it is difficult to define the typical match field in your flow,

Re: [Ryu-devel] [PATCH] adding DHCPv6 support

2016-11-24 Thread Olivier Desnoë
You may be right. I'll check it soon. Thanks for your comments. Olivier Le mar. 22 nov. 2016 à 06:50, Iwase Yusuke a écrit : > Hi Olivier, > > Thank you for submitting your patch! > > First, the patch seems to be wrapped unexpectedly when line exceeds > 80(?) characters or so. > Please confirm

[Ryu-devel] Simple switch and arping

2016-11-24 Thread Garegin Grigoryan
Good afternoon and happy thanksgiving! I installed ryu controller using this commands sudo pip install ryu sudo git clone git://github.com/osrg/ryu.git sudo python ./setup.py install On OVS switch (I'm using GENI), I have added all the ports to the bridge. I run it in the secure mode. Now, whet

Re: [Ryu-devel] Deleting a single flow entry

2016-11-24 Thread Aqsa Malik
Hi Iwase, Thank you so much. I had no idea I had to define all the match entries like that. However it is not working for me for some reason, my flow is still there. Also is there any help or documentation that can guide me in translating the Ryu curl commands in to the python alternatives? Than