Re: [ovs-discuss] OVS remote administration

2013-02-01 Thread Justin Pettit
Using "ptcp:" with an IP address doesn't limit the address that's allowed to connect. It's specifying what IP address it should locally bind to, so it needs to be an IP address on that local system. If you want to limit who can connect, you can use iptables or use "pssl:" to authenticate the o

Re: [ovs-discuss] How to dump the flow from ovs and restore the flow to ovs?

2013-02-01 Thread Luca Prete
Hi, If you don't find any other solution I can suggest a sh script, like I do... Just a for cycle with the ovs-ofctl add-flows br0 LINE for each line of the text doc I know it's dirty, but for the moment it could be the only solution...otherwise let me know! :) Cheers, Luca Il 01/02/2013

Re: [ovs-discuss] How to dump the flow from ovs and restore the flow to ovs?

2013-02-01 Thread Justin Pettit
The "ovs-ofctl dump-flows" command is going to dump out more data than "ovs-ofctl add-flows" needs. The error you're seeing is complaining about the first line of dump-flows output, which is "NXST_FLOW reply". Try removing that. I just noticed that 1.6 and later releases don't properly read in

Re: [ovs-discuss] How to dump the flow from ovs and restore the flow to ovs?

2013-02-01 Thread yue wang
Hi Justin, Thanks for your help, and i use ovs 1.7.1, after removing the first line, and delete the idle_age column, i found the command "ovs-ofctl add-flows br0 file1" works fine, so i will focus on this bug, and waiting for the new release, thanks again. Best regards, Heuye On Fri, Feb 1, 201