Re: [Ryu-devel] RYU Rest Router IPv6

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月21日 17:55, Edgar G. Acela wrote: > Hi Iwase. Thanks for the reply. > I'm trying to edit the "Rest_router.py" RYU application in python. I am > modifying IPv4 variables, i'm getting IPv6 variablesinstead. > It's okay? or better to start from scratch with a new application? I am > c

Re: [Ryu-devel] About the Ryubook(traditional Chinese) issue

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月09日 06:32, 陳彥皓 wrote: > Hi Ryu project team > > My name is Chen, Yan-Hao. I am a student in Taiwan. I am writing to ask a > issue. Today, When I am studying How to build a Traffic Monitor with Ryu, I > find this word "evernlet" at the paragraph of "固定週期處理". I think there is a > m

Re: [Ryu-devel] how to measure arrival flow rate

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月21日 19:04, mehran shetabi wrote: > hi, > no, i mean exactly flow rate (flow/second). Then, could you tell us what "flow" means? The number of FlowMod messages from controller to switch per second? If so, the following is an easy way, I think. 1. captures packets at switch side (ma

[Ryu-devel] IPs and Switch-interfaces in RYU rest_router.py

2016-06-21 Thread Pynbiang Hadem
Dear All, I executed the following commands for rest_router.py: curl -X POST -d '{"address":"10.0.1.100/24"}' http://localhost:8080/router/0001 curl -X POST -d '{"address": "10.10.10.1/24"}' http://localhost:8080/router/0001 After which my AddressData object for *switch_id

Re: [Ryu-devel] how to measure arrival flow rate

2016-06-21 Thread mehran shetabi
hi, no, i mean exactly flow rate (flow/second). ... mehran shetabi PhD student Computer Engineering Department IUST -Original Message- From: Iwase Yusuke To: mshet...@iust.ac.ir, mininet-discuss-requ...@lists.stanford.edu Cc: ryu-deve

Re: [Ryu-devel] RYU Rest Router IPv6

2016-06-21 Thread Edgar G. Acela
Hi Iwase. Thanks for the reply. I'm trying to edit the "Rest_router.py" RYU application in python. I am modifying IPv4 variables, i'm getting IPv6 variables instead. It's okay? or better to start from scratch with a new application? I am currently learning python and i dont know where to start for

Re: [Ryu-devel] how to measure arrival flow rate

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月17日 21:54, mehran shetabi wrote: > hi, > is there any way to measure arrival flow rate (flow/second) to a switch in > Mininet? Does "flow rate" mean the arrival packets rate (packets/sec or bytes/sec)? The following shows an example to monitor the traffic on Mininet. http://os

Re: [Ryu-devel] RYU component for network with cycles

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月20日 17:37, יקיר לוי wrote: > Hi everyone. > > as a part of network project for implementing routing algorithm i decided to > use RYU as the controller for that purpose. > the basic concept of the algorithm is: there is a grid of switches, while > some of them functioning as router

Re: [Ryu-devel] RYU Rest Router IPv6

2016-06-21 Thread Iwase Yusuke
Hi, On 2016年06月21日 06:08, Edgar G. Acela wrote: > Hello everyone. > > I'm trying, through MiniNet and Ryu, to use an OpenFlow switch as a router to > handle IPv6 addresses. > I've been watching the rest_router.py Ryu and see that only supports IPv4 > addresses. > Any suggestions to achieve this

Re: [Ryu-devel] ImportError: No module named ovs.db.data

2016-06-21 Thread Iwase Yusuke
Hi, rest_qos seems to require Python OVS package. You can install optional requirements as follows. http://ryu.readthedocs.io/en/latest/getting_started.html#optional-requirements e.g.) $ sudo pip install ovs Thanks, Iwase On 2016年06月17日 20:02, wesam kh wrote: > hi all > I have some pro

Re: [Ryu-devel] Unable to install Ryu from source

2016-06-21 Thread Iwase Yusuke
Hi, To install Ryu, please refer to the following Ryu-Book page. http://osrg.github.io/ryu-book/en/html/switching_hub.html#execution-of-ryu-application Installation procedure $ sudo apt-get install git python-dev python-setuptools python-pip $ git clone https://github.com/osrg/ryu.git $ cd ry