Re: [Ryu-devel] Running rest_firewall.py on Lagopus

2016-08-02 Thread University
Hi, Thanks for responding. I am figuring out how to specify "--enable-hybrid" in lagopus configure now. I will let you know if it's work. Regards, Panha Sent from my iPhone > On Aug 3, 2016, at 12:04 PM, Iwase Yusuke wrote: > > Hi, > > According to the issues page on Lagopus GitHub, >

Re: [Ryu-devel] Running rest_firewall.py on Lagopus

2016-08-02 Thread Iwase Yusuke
Hi, According to the issues page on Lagopus GitHub, you need to specify '--enable-hybrid' in configure, I guess. https://github.com/lagopus/lagopus/issues/76 Thanks, Iwase On 2016年08月02日 17:25, Hong Panha wrote: > Hi everyone, > > > I am trying run rest_firewall.py with ryu-manager, it’s not

Re: [Ryu-devel] Setting the same symbol twice in an OpenFlow rule

2016-08-02 Thread Alan Deikman
Thanks again Iwase-san. I was able to program the flow rule. (Not that it does what I want yet but at least I am past that problem.) > On Aug 2, 2016, at 12:10 AM, Iwase Yusuke wrote: > > +actions = [ > +parser.OFPActionSetField(vlan_vid=(100 | > ofproto.OFPVID_PRESENT)

Re: [Ryu-devel] Flow table

2016-08-02 Thread Hong Panha
Hi Iwase, Thanks for your fast responding. I will check the link you suggested. Regard, Panha > On Aug 1, 2016, at 5:26 PM, Hong Panha wrote: > > Hi, > > I am now doing experiment with Lagopus 0.2.6 and i wonder how to check the > flow table of the switch. Can anyone help me please ? > >

Re: [Ryu-devel] Overlay network based on grep tunnel

2016-08-02 Thread Iwase Yusuke
Hi, Your scenario seems to show that the GRE overlay network is implemented between Host1 and Host2, right? If so, the network of OVS + External switch need to perform the underlay network, I think. In this situation, OVS + External switch are required just L2/L3 routing and Ryu does not need to

Re: [Ryu-devel] priority change of the existing data flow

2016-08-02 Thread Iwase Yusuke
Hi, AFAIK, OpenFlow does not provide the feature for changing the priority without changing the other fields. So, you need to delete the previous flow which has priority=1 first, then you need to add the new flow with the new priority for changing the priority. The following shows an image to i

Re: [Ryu-devel] ofsoftwitch13 is compatible/support LLDP and BDDP packets?

2016-08-02 Thread Iwase Yusuke
Hi Maurizio, On 2016年07月30日 02:28, Maurizio Marrocco wrote: > Hi Ryu Team, > > My question is the following: ofsoftwitch13 is compatible with LLDP and BDDP > packet? Sorry, I don't know whether ofsoftwitch13 supports LLDP and BDDP packet or not. How about contacting the developers of ofsoftwitc

Re: [Ryu-devel] Flow table

2016-08-02 Thread Iwase Yusuke
Hi Panha, What does 'check the flow table' exactly means? To get FlowStats of the specific flow table? If so, the following shows the examples for sending the FlowStatsRequest and getting the FlowStatsReply. http://ryu.readthedocs.io/en/latest/ofproto_v1_3_ref.html#ryu.ofproto.ofproto_v1_3_pa

Re: [Ryu-devel] Setting the same symbol twice in an OpenFlow rule

2016-08-02 Thread Iwase Yusuke
Hi Alan, On my environment, Ryu + OVS on Minint, Ryu could install a flow entry with two SET_FIELD actions. $ git diff diff --git a/ryu/app/simple_switch_13.py b/ryu/app/simple_switch_13.py index 3e7c598..eb92c31 100644 --- a/ryu/app/simple_switch_13.py +++ b/ryu/app/simple_switch_13.py @@ -48,6