[ovs-discuss] Router not allowing traffic in reverse

2019-02-27 Thread John Carew
I have setup OpenStack with OVS. I have a single Hyper-V server running the controller and three CentOS instances(10.0.0.x) on a private subnet. I created a router in OpenStack with SNAT disabled, as I only want it to route traffic between the private subnet(10.0.0.x) and the external

[ovs-discuss] Open vSwitch 2.11.0 Available

2019-02-27 Thread Justin Pettit
The Open vSwitch team is pleased to announce the release of Open vSwitch 2.11.0: http://openvswitch.org/releases/openvswitch-2.11.0.tar.gz A few other feature highlights of 2.11.0 include: - OVN support for encrypted tunnels between hypervisors. - Improved IPAM support in OVN. - New OpenFlow

Re: [ovs-discuss] How to send information from ovs to controller through Openflow

2019-02-27 Thread Ben Pfaff
On Thu, Feb 28, 2019 at 12:49:27AM +0700, Tuyen Dinh wrote: > I'm doing a project that need to modify ovs source code to do some > statistics about the packets (which I can't get that information from flow > tables). After get that statistics , I need to send them to the controller. > As far as I

[ovs-discuss] How to send information from ovs to controller through Openflow

2019-02-27 Thread Tuyen Dinh
Hi, I'm doing a project that need to modify ovs source code to do some statistics about the packets (which I can't get that information from flow tables). After get that statistics , I need to send them to the controller. As far as I know, Openvswitch has the vswitchd deamon which communicate with

Re: [ovs-discuss] ovs-ofctl fails occasionally

2019-02-27 Thread Ben Pfaff
On Wed, Feb 27, 2019 at 12:45:58PM +, Ken Ajiro wrote: > > Hello, > > When I use ovs-ofctl on OVS 2.10.1, it failed occasionally by error: > > ovs-ofctl: br0: failed to connect to socket (Broken pipe) > > This error is possible to be reproduced with: > > # while :; do

[ovs-discuss] ovs-vswitch.log miss_upcall and ARP reply issue

2019-02-27 Thread Leigh Woolley via discuss
Hi All, Just wondering where to start looking for a answer to the following issue: When performing an ARP request on a specific host (11.0.0.1) we're seeing the responses returned on the expected virtual NIC via tcpdump. However the ARP request isn't been passed up to the controller. 

[ovs-discuss] ovs-ofctl fails occasionally

2019-02-27 Thread Ken Ajiro
Hello, When I use ovs-ofctl on OVS 2.10.1, it failed occasionally by error: ovs-ofctl: br0: failed to connect to socket (Broken pipe) This error is possible to be reproduced with: # while :; do /opt/nec/pf/ds/bin/ovs-ofctl --timeout=5 dump-flows br0 > /tmp/log || break; done;