Re: [Ryu-devel] error: cannot convert argument to integer

2017-01-18 Thread Munther Numan
; Flow: added") dp.send_msg(mod) Best Regards Munther Numan Master Student Faculty of Engineering University Putra Malaysia From: Munther Numan [mailto:[email protected]] Sent: Wednesday, January 18, 2017 8:57 PM To: Ryu-devel Subject: [Ryu-devel] error: cannot convert argument to in

[Ryu-devel] error: cannot convert argument to integer

2017-01-18 Thread Munther Numan
Greeting All, I get error below when I set hard_timeout to the flow I try in many ways but same thing occurs , please if you can help me . The command : mod = parser.OFPFlowMod(datapath=dp, priority=priority, match=match, instructions=inst, hard

Re: [Ryu-devel] error: cannot convert argument to integer

2016-03-01 Thread David Gabriel
I fixed this issue. In fact I have to use the -O option to specify the openflow version ovs-ofctl dump-flows mybridge *-O OpenFlow13* Thanks. 2016-03-01 2:09 GMT-08:00 David Gabriel : > Dears > > Thanks Shinpei for your help. > I have fixed my issue but when I use this command 'ovs-ofctl dump-fl

Re: [Ryu-devel] error: cannot convert argument to integer

2016-03-01 Thread David Gabriel
Dears Thanks Shinpei for your help. I have fixed my issue but when I use this command 'ovs-ofctl dump-flows mybridge' to get the flows deails it shows me this kind of error after displaying few flows. Please note that when I disable writing metadata the content is well displayed. ovs-ofctl dump-f

Re: [Ryu-devel] error: cannot convert argument to integer

2016-02-29 Thread Shinpei Muraoka
Hi, > In fact I am using a 64-bit VM under a 64-bit physical machine but the > problem is still pending. > Please advise how to fix it ? > inst = [parser.OFPInstructionWriteMetadata(metadata, 0x), parser.OFPInstructionGotoTable(3), ] The argument metadata of OFPInstructionWriteMeta

Re: [Ryu-devel] error: cannot convert argument to integer

2016-02-28 Thread David Gabriel
Dear Shinpei and all, Thanks for your answer. In fact I am using a 64-bit VM under a 64-bit physical machine but the problem is still pending. Please advise how to fix it ? Best regards. Hi, > inst = [parser.OFPInstructionWriteMetadata(metadata, 0x), parser.OFPInst

Re: [Ryu-devel] error: cannot convert argument to integer

2016-02-15 Thread Shinpei Muraoka
Hi, > inst = [parser.OFPInstructionWriteMetadata(metadata, > 0x), parser.OFPInstructionGotoTable(3), ] > mod = parser.OFPFlowMod(datapath=self.current_datapath, > priority=1, match=match, instructions=inst,table_id=1) > s

[Ryu-devel] error: cannot convert argument to integer

2016-02-11 Thread David Gabriel
Dears I am getting this error when I set the writeMatadata instruction. This is my code and below is the error I am getting. inst = [parser.OFPInstructionWriteMetadata(metadata, 0x), parser.OFPInstructionGotoTable(3), ] mod = parser.OFPFlowMod(d