Re: [Ryu-devel] Issue of config file

2015-03-11 Thread Satoshi KOBAYASHI
Hi YAMAMOTO-san, 2015-03-12 11:29 GMT+09:00 YAMAMOTO Takashi : > hi, > > > p.s. > > If the option is abolished since 3.19, I don't mind. But, I thought the > > information which loses the backward compatibility should be advertised > > widely, so I posted. > > sorry for the lack of heads-up. > P

Re: [Ryu-devel] Issue of config file

2015-03-11 Thread YAMAMOTO Takashi
hi, > p.s. > If the option is abolished since 3.19, I don't mind. But, I thought the > information which loses the backward compatibility should be advertised > widely, so I posted. sorry for the lack of heads-up. > > 2015-03-11 17:33 GMT+09:00 Satoshi KOBAYASHI : > >> Hi folks, >> >> I notice

Re: [Ryu-devel] Disabling a port

2015-03-11 Thread Yusuke Iwase
Hi Chandra, On 2015年03月11日 18:03, Chandra Satriana wrote: > Hello, > > Do you know how to disable a port ? > > Is it by setting ofppc_port_down to the config of port ? What do you specifically mean "disable"? - OpenFlow Spec 1.3.4 - enum ofp_port_config { OFPPC_PORT_DOWN = 1 << 0, /*

Re: [Ryu-devel] Ryu decode EventOFPErrorMsg

2015-03-11 Thread Minoru TAKAHASHI
Hi, On 2015年03月11日 20:25, Sascha Bleidner wrote: > Hello, > > Is there any documentation available about how to decode OpenFlow error > messages? Please refer to the "A.4.4 Error Message" of OpenFlow specification. It is available for download at Open Networking Foundation(https://www.opennet

[Ryu-devel] Ryu decode EventOFPErrorMsg

2015-03-11 Thread Sascha Bleidner
Hello, Is there any documentation available about how to decode OpenFlow error messages? Right now I am using the following code to receive error messages: @set_ev_cls(ofp_event.EventOFPErrorMsg, [HANDSHAKE_DISPATCHER, CONFIG_DISPATCHER, MAIN_DISPATCHER]) def error_msg_handler(self,

[Ryu-devel] Disabling a port

2015-03-11 Thread Chandra Satriana
Hello, Do you know how to disable a port ? Is it by setting ofppc_port_down to the config of port ? Best regards, Chandra -- Dive into the World of Parallel Programming The Go Parallel Website, sponsored by Intel and de

Re: [Ryu-devel] Issue of config file

2015-03-11 Thread Satoshi KOBAYASHI
p.s. If the option is abolished since 3.19, I don't mind. But, I thought the information which loses the backward compatibility should be advertised widely, so I posted. 2015-03-11 17:33 GMT+09:00 Satoshi KOBAYASHI : > Hi folks, > > I noticed that Ryu has issue of config file. The following optio

[Ryu-devel] Issue of config file

2015-03-11 Thread Satoshi KOBAYASHI
Hi folks, I noticed that Ryu has issue of config file. The following option 'C' no longer works. https://github.com/osrg/ryu/blob/305e41f47bf5e51ad5ade1ec1590c965586ed10a/ryu/cfg.py#L21-23 Because: 3.18 or before: ryu.cfg.CONF == oslo.config.cfg.CONF 3.19 ryu.cfg.CONF != oslo.config.cfg.CONF If