hi.
i followed http://ryu.readthedocs.io/en/latest/app/rest_vtep.html .. but i
am very new to ryu,..can someone kindly help me to run it.
cd ryu1
ryu-manager ryu/app/rest_vtep.py
cd ryu2
ryu-manager ryu/app/rest_vtep.py
ovs-vsctl add-br s1-ovs
ovs-vsctl set-controller s1-ovs tcp:172.17.0.1:
Hi everyone,
I am trying to launch https://github.com/OpenState-SDN/spider
when I try to Launch SPIDER:
$ cd ~/spider/src
$ sudo ryu-manager SPIDER_ctrl_WEBAPP.py
I get
Traceback (most recent call last):
File "/usr/local/bin/ryu-manager", line 9, in
load_entry_point('ryu==3.29', 'console_scripts
Hello Bill,
Thank you for your response! The output is very similar to our requirement!
Could you please tell me how the data field was populated?
Thanks once again!
Jibran
> On Apr 9, 2017, at 12:57 AM, William Fisher
> wrote:
>
> I'm not completely sure what you want to do. Do you want out
The data field is the packet data for the Packet-In message in hex. I
took the data snippet from your message (with python string escapes)
and entered the following in a python 2.7 interpreter:
>>> data='\x00\x00\x00\x00\x00\x01\x00\x00\x00\x00\x00\x02\x08\x00E\x10\x00D\x84u@\x00@\x06\xa2,\n\x00\x
Thank you very much for the information Bill!
Jibran
> On Apr 9, 2017, at 3:19 PM, William Fisher wrote:
>
> The data field is the packet data for the Packet-In message in hex. I
> took the data snippet from your message (with python string escapes)
> and entered the following in a python 2.7
Hi, Jibran
Sorry for cutting in.
FYI, in RYU, you can decode your OpenFlow message like this:
@set_ev_cls(ofp_event.EventOFPPacketIn, MAIN_DISPATCHER)
def _packet_in_handler(self, ev):
msg = ev.msg.to_jsondict()
print(json.dumps(msg, indent=4))
And you can get:
{
"OFPPacketIn": {
Hi,
On 2017年04月09日 21:22, Soliman Awad Alshra´a Abdullah TU Ilmenau wrote:
>
> Hi everyone,
>
> I am trying to launch https://github.com/OpenState-SDN/spider
SPIDER controller seems to be developed in the external project of Ryu-devel,
So, I'm sorry if I don't know enough...
>
> when I
Hi,
Thank you for reporting!
On 2017年04月09日 20:31, Tessy Thomas wrote:
> hi.
> i followed http://ryu.readthedocs.io/en/latest/app/rest_vtep.html .. but i am
> very new to ryu,..can someone kindly help me to run it.
>
> cd ryu1
> ryu-manager ryu/app/rest_vtep.py
>
> cd ryu2
> ryu-manager r
Hi Brad,
Great! Thanks a lot!
It looks almost good to me.
A few remarks, if update sys.path before importing module file, I guess we need
to backup
the original sys.path and restore it before returning module instance as
following.
https://github.com/osrg/ryu/blob/master/ryu/utils.py#L96-L97
Hi,
Currently Ryu is focus on using OpenFlow protocol to control dataplane.
I think there is no specific OpenFlow message for power control.
However, you still can use Ryu to do that, in my opinion, there are two
options:
1. Modify your dataplane (e.g. WiFi AP), make it support OpenFlow, and ad
Hi Iwase,
You are quite right I forgot to copy that part of the code over.
I have attached a refreshed patch that restores sys.path after a file is
imported.
Let me know what you think!
Brad
On 10 April 2017 at 14:22, Iwase Yusuke wrote:
> Hi Brad,
>
> Great! Thanks a lot!
> It looks almost
11 matches
Mail list logo