Re: [Ryu-devel] How to start the ofagent

2015-04-30 Thread fumihiko kakuma
Hi Oguchi, The following seems to need in addition. # sudo apt-get install rabbitmq-server And ofagent installed from deb package is ran from Upstart using /etc/init/neutron-plugin-openflow-agent.conf That refers /etc/neutron/plugins/ml2/ml2_conf_ofa.ini instead of /etc/neutron/plugins/ml2/ml2_c

Re: [Ryu-devel] [PATCH] ofproto_v1_5_parser: Fix invalid variable name in OFPPortStatsRequest

2015-04-30 Thread Minoru TAKAHASHI
Hi, This fix will post at the same time as the following Support. Please wait a while. * B18.20 Unified requests for group, port and queue multiparts (B18.20 is one of OFspec1.5 release notes) thanks On 2015年04月30日 17:42, Minoru TAKAHASHI wrote: > Sorry.There is a mistake in this patch. > I

Re: [Ryu-devel] ?????? Flow table

2015-04-30 Thread Minoru TAKAHASHI
Hi, On 2015??05??01?? 11:35, ?? wrote: > > hi, > I do like you say,but error like this: > curl: no URL specified. Do you enter a space before the URL? NG: ":10.0.0.1/24}}'http://127.0.0.1: OK: ":10.0.0.1/24}}' http://127.0.0.1: ^ > > And why "actions":[{"type":"O

[Ryu-devel] Ryu controller plugin

2015-04-30 Thread Kelvin Yau
Hi guys, I'm still new to the whole SDN and RYU configuration. I'm looking to do a Ryu plugin that could use to check the connection and command for the QoS "example of the operation of the per-flow QoS" documentation provided in your ebook. The goal of the plugin is to check the command is been e

Re: [Ryu-devel] How to start the ofagent

2015-04-30 Thread fumihiko kakuma
Hi Oguchi On Fri, 1 May 2015 06:21:01 +0900 Masato Oguchi wrote: > Hi kakuma, > > Thank you very much for the advice. > > > If you install neutron-plugin-openflow-agent package, > > ofagent will be started when the system boots. > > Because deb package registers the job of ofagent. > > You can

Re: [Ryu-devel] forcing RYU to use openflow1.4

2015-04-30 Thread Minoru TAKAHASHI
Hi, You can specify OpenFlow versions in your application like the following: class PacketTest(app_manager.RyuApp): OFP_VERSIONS = [ofproto_v1_4.OFP_VERSION] def __init__(self, *args, **kwargs): pass For example, ryu/app/simple_switch_14.py will work only OpenFlow14. https://git

Re: [Ryu-devel] Flow table

2015-04-30 Thread Minoru TAKAHASHI
Hi, Please don't drop the mailing list. I think that "sh" is unnecessary. And there is some error in command.Please correct as follows. curl -d '{"dpid":"1", "priority":4,"actions":[{"type":"OUTPUT","value":3}],"match":{"dl_type":2048,"in_port":4,"nw_dst":"10.0.0.4/24","nw_src":"10.0.0.1/24"}}'

Re: [Ryu-devel] How to start the ofagent

2015-04-30 Thread Masato Oguchi
Hi kakuma, Thank you very much for the advice. > If you install neutron-plugin-openflow-agent package, > ofagent will be started when the system boots. > Because deb package registers the job of ofagent. > You can confirm whether ofagent is runing by the following. > > # service neutron-plugin-op

[Ryu-devel] FW: Get video resolution(height & width)

2015-04-30 Thread Matthew Hayes
Hi Yang-Ming Hsu, An interesting use case, I am curious to know more about what you will use the video resolution information for? One method is to do payload inspection of media and/or control streams. This would only work if the transport stream is not encrypted. Another method would be to d

[Ryu-devel] forcing RYU to use openflow1.4

2015-04-30 Thread Eyal Nissim
Hi, I'm using the latest version of RYU. (installed the executable on Ubuntu a few days ago) at this point RYU is trying to communicate with my soft switch (CPQD) using openflow1.0 while the switch is trying to communicate via openflow1.4 (this can be seen both from the switch logs as well a

[Ryu-devel] OpenFlow - 1.5 Controller

2015-04-30 Thread Gajjar, Parth Ash
Hi Everybody, I wanted to know. When Ryu is planning to release OpenFlow-1.5 Controller. It will be great help if you can give some dates when you are planning to release some of the features from them. Thanks & Regards, Parth -

Re: [Ryu-devel] How to start the ofagent

2015-04-30 Thread fumihiko kakuma
Hi Oguchi, If you install neutron-plugin-openflow-agent package, ofagent will be started when the system boots. Because deb package registers the job of ofagent. You can confirm whether ofagent is runing by the following. # service neutron-plugin-openflow-agent status ryu application uses the p

Re: [Ryu-devel] [PATCH] ofproto_v1_5_parser: Fix invalid variable name in OFPPortStatsRequest

2015-04-30 Thread Minoru TAKAHASHI
Sorry.There is a mistake in this patch. I make the patch again. Please wait a little. On 2015年04月30日 17:20, Minoru TAKAHASHI wrote: > Signed-off-by: Minoru TAKAHASHI > --- > ryu/ofproto/ofproto_v1_5_parser.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/ryu/ofproto/o

[Ryu-devel] [PATCH] ofproto_v1_5_parser: Fix invalid variable name in OFPPortStatsRequest

2015-04-30 Thread Minoru TAKAHASHI
Signed-off-by: Minoru TAKAHASHI --- ryu/ofproto/ofproto_v1_5_parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ryu/ofproto/ofproto_v1_5_parser.py b/ryu/ofproto/ofproto_v1_5_parser.py index d3a8970..4be4c68 100644 --- a/ryu/ofproto/ofproto_v1_5_parser.py +++ b/ryu/ofpr

Re: [Ryu-devel] Question

2015-04-30 Thread Yi Tseng
Hi You can use unix domain socket to communicate with ryu application. for example, snort library: https://github.com/osrg/ryu/blob/master/ryu/lib/snortlib.py#L71 it allows snort application send alert message to ryu application. OR you can create wsgi application and use *requests* library f