[Ryu-devel] Есть проблемы с сайтом? Мы поможем!

2014-09-01 Thread Елена
ТОЛЬКО ДО 15 сентяюря 2014 года! 1. Хостинг и домен в зоне RU на ваше имя на 1 год 2. Наполнение сайта текстом и фото (предоставляется заказчиком) 3. Форма отправки сообщений и карта проезда 4. Красивая фотогалерея 5. Создание 6-8 страниц сайта Заказать сайт (812) 981-72-40 (9

Re: [Ryu-devel] Cannot add flow which matches non-VLAN-tagged packets

2014-09-01 Thread Wei-Li Tang
Hello Fujita, Thanks for the hint. I've been utilizing ofctl_v1_3 for a while, and I've noticed that the old API, which is used in ofctl, is supposed to be removed in the future. I may make a patch to migrate ofctl to the new OFPMatch API later. 2014-09-02 7:38 GMT+08:00 FUJITA Tomonori : > On

Re: [Ryu-devel] [PATCH] bgp: should not use dict comprehension

2014-09-01 Thread Satoshi KOBAYASHI
2014-09-01 15:24 GMT+09:00 FUJITA Tomonori : > On Mon, 1 Sep 2014 11:41:03 +0900 > Satoshi Kobayashi wrote: > > > Dict Comprehension is available in Python 2.7+ but Ryu should work > > with Python2.6. Currently, It will become syntax error when we try to > > operate BGP of Ryu on the platform of

Re: [Ryu-devel] Registering a new Command Line Option in RYU App

2014-09-01 Thread FUJITA Tomonori
Please don't drop the mailing list On Tue, 2 Sep 2014 13:12:14 +1200 Karthik Sharma wrote: > How do I do that? As I said before, please have look at the code which uses register_opts(). Also oslo.config doc might be useful: http://docs.openstack.org/developer/oslo.config/ ---

Re: [Ryu-devel] Adding flows

2014-09-01 Thread FUJITA Tomonori
Hi, Please keep the mailng list. On Mon, 1 Sep 2014 09:33:29 + MARIA VICTORIA ALVAREZ SIERRA wrote: > If I put : > > curl -X POST -d '{"dpid": "274970902523461", "match": {"in_port": "1"}, > "actions": [{"type": "OUTPUT", "port": "2"}]}' > http://localhost:8080/stats/flowentry/add The f

Re: [Ryu-devel] Registering a new Command Line Option in RYU App

2014-09-01 Thread FUJITA Tomonori
On Mon, 1 Sep 2014 19:46:49 +1200 Karthik Sharma wrote: > I need to be able to read in a path file from my simple_switch.py > application.I have added the following code to my simple_switch.py in > python. > > LOG = logging.getLogger(__name__) > CONF = cfg.CONF > CONF.registe

Re: [Ryu-devel] Cannot add flow which matches non-VLAN-tagged packets

2014-09-01 Thread FUJITA Tomonori
On Mon, 01 Sep 2014 19:53:41 +0900 (JST) FUJITA Tomonori wrote: > Hello, sorry about the delay, > > On Fri, 29 Aug 2014 15:10:46 +0800 > Wei-Li Tang wrote: > >> I tried to add a flow which matches non-VLAN-tagged packets by specifying >> VLAN_VID match field without OFPVID_PRESENT bit, but it

[Ryu-devel] Ryu 3.13 released

2014-09-01 Thread FUJITA Tomonori
Hi, This release includes many bug fixes and improvement about especially BGP, new Snort integration application, etc. Enjoy! = FUJITA Tomonori (9): bgp: fix bug of labels formatting for show VPNv4 prefix information bgp: move ssh configuration to bgp config file bgp: add BGP c

Re: [Ryu-devel] Cannot add flow which matches non-VLAN-tagged packets

2014-09-01 Thread FUJITA Tomonori
Hello, sorry about the delay, On Fri, 29 Aug 2014 15:10:46 +0800 Wei-Li Tang wrote: > I tried to add a flow which matches non-VLAN-tagged packets by specifying > VLAN_VID match field without OFPVID_PRESENT bit, but it didn't work. It > seems that Ryu always sets OXM_OF_VLAN_VID with OFPVID_PRESE

[Ryu-devel] Registering a new Command Line Option in RYU App

2014-09-01 Thread Karthik Sharma
I need to be able to read in a path file from my simple_switch.py application.I have added the following code to my simple_switch.py in python. LOG = logging.getLogger(__name__) CONF = cfg.CONF CONF.register_cli_opts([ cfg.StrOpt('path-file', default='test.txt'