Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-28 Thread Talal Alharbi
end(parser.OFPActionSetFiled(arp_spa='192.168.1.20')) >> actions = actions.append(parser.OFPActionOutput(ofproto.OFPP_FLOOD)) >> . >> . >> . >> . >> It is giving me an error >> I need to changed all payload of ARP request. >> >>>

Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-28 Thread Talal Alharbi
rp_spa='192.168.1.20')) >> actions = actions.append(parser.OFPActionOutput(ofproto.OFPP_FLOOD)) >> . >> . >> . >> . >> It is giving me an error >> I need to changed all payload of ARP request. >> >>> Subject: Re: [Ryu-devel] Re

Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-28 Thread Yusuke Iwase
> From: [email protected] > To: [email protected] > Date: Fri, 28 Aug 2015 09:13:37 +0300 > CC: [email protected] > Subject: Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3 > > Hi Iwase, > > Thank you for your prompt reply. Yes, th

Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-28 Thread Talal Alharbi
port, the packet is being received. Cheers, From: [email protected] To: [email protected] Date: Fri, 28 Aug 2015 09:13:37 +0300 CC: [email protected] Subject: Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3 Hi Iwase, Thank you for your prompt reply. Yes, the switch sup

Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-27 Thread Talal Alharbi
actions = [] actions = actions.append(parser.OFPActionSetFiled(arp_spa='192.168.1.20')) actions = actions.append(parser.OFPActionOutput(ofproto.OFPP_FLOOD)) . . . . It is giving me an error I need to changed all payload of ARP request. > Subject: Re: [Ryu-devel] Rewrite Flow Entr

Re: [Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-27 Thread Yusuke Iwase
Hi, On 2015年08月28日 12:15, Talal Alharbi wrote: > Dear All, > > I was looking to have a rule on the switch to rewrite the payload of ARP > request, which rewrite the packet and send ARP reply without sending the > packet to the controller. Which field does "the payload of ARP request" mean? OF

[Ryu-devel] Rewrite Flow Entry OpenFlow1.3

2015-08-27 Thread Talal Alharbi
Dear All, I was looking to have a rule on the switch to rewrite the payload of ARP request, which rewrite the packet and send ARP reply without sending the packet to the controller. Cheers, Talal -