Re: [Ryu-devel] ryu.lib.ovs.vsctl.py

2015-07-03 Thread 俊 赵
i have figured out the problem. try the following code vsctl = ovs_vsctl.VSCtl("tcp:192.168.0.101:6634")cmd1 = ovs_vsctl.VSCtlCommand('add-port', ('OVS-SWITCH','gre0'))cmd2 = ovs_vsctl.VSCtlCommand('set', ('Interface','gre0','type=gre','options=local_ip=192.168.0.101,remo

Re: [Ryu-devel] [PATCH] travis: run tests with python3

2015-07-03 Thread FUJITA Tomonori
On Fri, 03 Jul 2015 14:36:38 +0900 (JST) FUJITA Tomonori wrote: > > Signed-off-by: FUJITA Tomonori > --- > .travis.yml | 1 + > 1 file changed, 1 insertion(+) Applied. -- Don't Limit Your Business. Reach for the Clou

Re: [Ryu-devel] [PATCH] Implement NX Resubmit-table action

2015-07-03 Thread FUJITA Tomonori
On Sat, 4 Jul 2015 01:39:49 +0900 YAMAMOTO Takashi wrote: > Signed-off-by: YAMAMOTO Takashi > Tested-by: Gal Sagie > --- > ryu/ofproto/nx_actions.py | 36 > 1 file changed, 36 insertions(+) Applied, thanks! ---

[Ryu-devel] ryu.lib.ovs.vsctl.py

2015-07-03 Thread 俊 赵
hi, i have a question. i want to execute the following commands in remote ryu controller 1) ovs-vsctl add-br OVS-SWITCH2) ovs-vsctl add-port OVS-SWITCH gre0 -- set interface gre0 type=gre options:remote_ip=192.168.0.100 how can i use function VSCtlCommand() to construct these two commands? is ther

[Ryu-devel] simple_switch_13.py

2015-07-03 Thread 俊 赵
hello everyone, thanks for your reading my email. i am new to ryu, and i am running simple_switch_13.py on my Macbook and i have another PC running OpenVswitch with Fedora 21 and openvswitch 2.3.1 the output is: zhaojundeMacBook-Pro:ryu root# ryu-manager simple_switch.py loading app simple_

[Ryu-devel] [PATCH] Implement NX Resubmit-table action

2015-07-03 Thread YAMAMOTO Takashi
This is a resend of the patch Gal posted while ago. YAMAMOTO Takashi (1): Implement NX Resubmit-table action ryu/ofproto/nx_actions.py | 36 1 file changed, 36 insertions(+) -- 2.3.2 (Apple Git-55) ---

[Ryu-devel] [PATCH] Implement NX Resubmit-table action

2015-07-03 Thread YAMAMOTO Takashi
Signed-off-by: YAMAMOTO Takashi Tested-by: Gal Sagie --- ryu/ofproto/nx_actions.py | 36 1 file changed, 36 insertions(+) diff --git a/ryu/ofproto/nx_actions.py b/ryu/ofproto/nx_actions.py index 4a95538..cc9c3f8 100644 --- a/ryu/ofproto/nx_actions.py +++ b/r

[Ryu-devel] Is it possible to parse EAP-packets by RYU ?

2015-07-03 Thread Omar HOUIDI
Hi, I'd like to use an authentication framework EAP (Extensible Authentication Protocol) with RYU controller. For example ,POX controller can parse these types of packets but is it possible to parse EAP packets by RYU/lib ? Thanks, Omar

Re: [Ryu-devel] How to pop vlan tag

2015-07-03 Thread [email protected]
Hi, Yes, of course! In fact, the TPID value is not limited to be 0x88a8/0x8100, it could be spicified by different service provider. The systems of different vendors might set the TPID of the outer VLAN tag of Q-in-Q frames to different values. I think the code of ryu did not refer to this cas