Re: [Ryu-devel] [PATCH 3/4] json representation of of-wire classes

2013-06-03 Thread YAMAMOTO Takashi
> +elif isinstance(json_value, list): > +v = map(StringifyMixin._decode_value, json_value, str_decoder) additional arguments for map have a different meaning than what you seem to expect here. YAMAMOTO Takashi --

[Ryu-devel] readthedocs.org

2013-06-03 Thread FUJITA Tomonori
Hi, I've set up ryu docs at readthedocs.org: http://ryu.readthedocs.org/en/latest/ You can always access to the latest docs. I've also updated the link to docs at Ryu site. -- Get 100% visibility into Java/.NET code wit

Re: [Ryu-devel] quantum-ryu-agent boot failed

2013-06-03 Thread imeat u
Hello, Thank you for your quick reply. > quantum_controller_addr is set as a openflow controller address into > OVS(br-int), so it should be configured actual ryu service address, > e.g. "tcp:192.168.0.2:6633". It was as you have pointed out. The problem was solved in the following configuration ch

Re: [Ryu-devel] Ryu OpenFlow 1.3 issue

2013-06-03 Thread FUJITA Tomonori
Hi, On Mon, 3 Jun 2013 16:16:29 +0300 "Oren Spector" wrote: > It seems switch_features_handler is not handling well an OpenFlow 1.3 > FEATURES_REPLY message, which doesn't contain port information (as opposed > to OpenFlow 1.0 FEATURES_REPLY message). Any suggestions how to overcome > this probl

[Ryu-devel] Ryu OpenFlow 1.3 issue

2013-06-03 Thread Oren Spector
Hi, I'm trying to work with Ryu using OpenFlow 1.3. I wrote a Ryu application that prints a message when a client connects or disconnects to Ryu. # switch connected/disconnected event @set_ev_cls(dpset.EventDP) def dp_handler(self, ev): # return if disconnected if not ev.enter:

Re: [Ryu-devel] [PATCH v3 1/2] add ICMP sub encoder/decoder class

2013-06-03 Thread Isaku Yamahata
On Mon, Jun 03, 2013 at 04:52:51PM +0900, Isaku Yamahata wrote: > > +self.data_len = data_len > > +self.mtu = 0 > > I'm not sure these two attributes are standard accoding to RFC792. If not, > they need comments and documents. mtu is defined by RFC1191(path MTU discovery). -- ya

[Ryu-devel] [PATCH] app/rest_firewall: add API for VLAN configuration

2013-06-03 Thread watanabe.fumitaka
add REST-API for VLAN configuration of rest_firewall application. it implements handling each vlan groups separately. Signed-off-by: WATANABE Fumitaka --- ryu/app/rest_firewall.py | 291 -- 1 file changed, 229 insertions(+), 62 deletions(-) diff --g

Re: [Ryu-devel] [PATCH v3 1/2] add ICMP sub encoder/decoder class

2013-06-03 Thread Isaku Yamahata
On Thu, May 30, 2013 at 02:57:20PM +0900, watanabe.fumitaka wrote: > Add ICMP sub encoder/decoder class > for Destination Unreachable Message and Time Exceeded Message. > > > Signed-off-by: WATANABE Fumitaka > --- > ryu/lib/packet/icmp.py | 109 > +