Re: [Ryu-devel] adding a flow to change the destination

2018-03-03 Thread Iwase Yusuke
Hi, You can use SET_FIELD action for such purpose. $ git diff diff --git a/ryu/app/simple_switch_13.py b/ryu/app/simple_switch_13.py index 06a5d0e..4045b8c 100644 --- a/ryu/app/simple_switch_13.py +++ b/ryu/app/simple_switch_13.py @@ -48,6 +48,18 @@ class SimpleSwitch13(app_manager.RyuApp):

[Ryu-devel] adding a flow to change the destination

2018-03-01 Thread S hj
Hello, Is it possible to add a flow with the following content in an OpenvSwitch using Ryu? How? if src=x and dest=y (match part) then: src=x (mac_address) dest=p, (mac_address) actions=normal Thank you -- Check