[Ryu-devel] AttributeError in DPSet with OpenFlow 1.3

2013-08-01 Thread Satoshi Kobayashi
Hi, I tried OpenFlow 1.3 on my application, I have noticed that it becomes an error. "OFP_VERSIONS = [ofproto_v1_3.OFP_VERSION]" The trace is following: hub: uncaught exception: Traceback (most recent call last): File "/home/satoshi/.virtualenvs/ryu-2.2/lib/python2.6/site-packages/ryu/lib/hub.p

Re: [Ryu-devel] [PATCH] pbr workaround for tarball

2013-08-01 Thread FUJITA Tomonori
On Thu, 1 Aug 2013 19:16:21 +0900 FUJITA Tomonori wrote: > `python setup.py install` with ryu tarball > (https://github.com/osrg/ryu/archive/master.tar.gz) gives the > following exception: applied. -- Get your SQL datab

[Ryu-devel] [PATCH] pbr workaround for tarball

2013-08-01 Thread FUJITA Tomonori
`python setup.py install` with ryu tarball (https://github.com/osrg/ryu/archive/master.tar.gz) gives the following exception: Traceback (most recent call last): File "/home/fujita/ryu-master/d2to1-0.2.10-py2.7.egg/d2to1/util.py", line 182, in cfg_to_args hook_fn(config) File "/home/fujita

Re: [Ryu-devel] Failure of installation by permission

2013-08-01 Thread FUJITA Tomonori
On Tue, 30 Jul 2013 17:41:04 +0900 FUJITA Tomonori wrote: > On Fri, 26 Jul 2013 11:53:25 +0900 > Satoshi Kobayashi wrote: > > > Hmm do not know for this to be a common way because I otherwise do > > not know the library which requires super user permission. > > How about the following? > > =

Re: [Ryu-devel] [PATCH] tests: stop comparing text addresses

2013-08-01 Thread FUJITA Tomonori
On Thu, 1 Aug 2013 16:00:17 +0900 YAMAMOTO Takashi wrote: > on OS X, ntop produces strings like '3ffe:507::1:200:86ff:fe05:80da' > while others (NetBSD, Linux) produce '3ffe:507:0:1:200:86ff:fe05:80da'. > > RFC 5952 4.2.2. says OS X behaviour is incorrect. (MUST NOT) > for longer term, it's pro

[Ryu-devel] [PATCH] tests: stop comparing text addresses

2013-08-01 Thread YAMAMOTO Takashi
on OS X, ntop produces strings like '3ffe:507::1:200:86ff:fe05:80da' while others (NetBSD, Linux) produce '3ffe:507:0:1:200:86ff:fe05:80da'. RFC 5952 4.2.2. says OS X behaviour is incorrect. (MUST NOT) for longer term, it's probably better to workaround this in addrconv module. Signed-off-by: YAM