Using devstack to create 2 tenants with floating ips.

The Scenario

In order to better understand how l3 forwarding works in openstack, I augumented Madhu's tenant example, so I could exercise a few points:

  • How tenants' are isolated (using their own vrouter and namespaces)
  • How tenants can have multiple subnets (with multiple networks) and use their vrouter to forward traffic between them
  • How to run the l3-agent in a separate node
  • How to add floating ip addresses from a common pool to different tenant's vms
  • How isolated tenant instances can reach each other by using their floating ips (going through the external network)

Configs

Starting Opendaylight controller

Running stack.sh on nodes

Make Tenants

Inspecting


For this exercise, I use the 4 vm nodes I created earlier:

A) control + compute1 -- fedora141 (172.16.150.141)

B) compute2 -- fedora142 (172.16.150.142)

C) compute3 -- fedora143 (172.16.150.143)

D) network -- fedora144 (172.16.150.144)

I also use the host system (laptop) to run the opendaylight controller (172.16.150.1).

Each node itself is a vm running a fedora 20. Please refer to this link for steps I used to create them and have them configured. Since these vms -- in particular, the compute nodes -- will be spawning tenant vms, this is a bit like Inception: Using a "dream within a dream" strategy. :)


Configs

The file local.conf -- used by stack.sh -- for each of the nodes is shown below. If you are using addresses other than the ones in this example, make sure to update them in each of these files.

Also, for the very first time that you run stack.sh you will need to change the following 2 lines, so devstack install whatever it depends on:

OFFLINE=False
RECLONE=yes

To lockdown devstack, make sure to change it back after the successful stack.sh calls:

cd /opt/devstack
sed -i -e 's/^OFFLINE=False$/OFFLINE=True/' ./local.conf && sed -i -e 's/^RECLONE=yes/RECLONE=no/' ./local.conf

In my dry run, I ran into the following issue while calling stack.sh (in the control node) for the very first time:

2014-06-15 23:03:06.122 | + local charset=utf8
2014-06-15 23:03:06.124 | + recreate_database_mysql keystone utf8
2014-06-15 23:03:06.126 | + local db=keystone
2014-06-15 23:03:06.127 | + local charset=utf8
2014-06-15 23:03:06.129 | + mysql -uroot -pmysql -h172.16.150.141 -e 'DROP DATABASE IF EXISTS keystone;'
2014-06-15 23:03:06.131 | ERROR 1045 (28000): Access denied for user 'root'@'fedora141' (using password: YES)
2014-06-15 23:03:06.132 | + exit_trap
2014-06-15 23:03:06.134 | + local r=1
2014-06-15 23:03:06.136 | ++ jobs -p
2014-06-15 23:03:06.138 | + jobs=
2014-06-15 23:03:06.140 | + [[ -n '' ]]
2014-06-15 23:03:06.142 | + kill_spinner
2014-06-15 23:03:06.143 | + '[' '!' -z '' ']'
2014-06-15 23:03:06.145 | + exit 1

To resolve this issue -- which is only on the control node -- this is what I did:

[odl@fedora141 devstack]$ ./unstack.sh
...
[odl@fedora141 devstack]$ mysql --user=root --password="" mysql
...
MariaDB [mysql]> UPDATE mysql.user SET Password = PASSWORD('mysql') WHERE User = 'root';
Query OK, 3 rows affected (0.00 sec)
Rows matched: 5  Changed: 3  Warnings: 0

MariaDB [mysql]> FLUSH PRIVILEGES;
Query OK, 0 rows affected (0.00 sec)
MariaDB [mysql]> exit;
...
[odl@fedora141 devstack]$ ./stack.sh

A) control + compute1 node

# Handy first time commands
cd /opt/devstack
wget -O local.conf https://gist.githubusercontent.com/anonymous/46fbdd6449f2111d1319/raw/gistify60226.txt
sed -i -e 's/^OFFLINE=True$/OFFLINE=False/' ./local.conf && sed -i -e 's/^RECLONE=no/RECLONE=yes/' ./local.conf
# ./stack.sh

[odl@fedora141 devstack]$ cd /opt/devstack && cat local.conf

[[local|localrc]]
LOGFILE=/opt/logs/stack/stack.sh.log
# Logging Section
SCREEN_LOGDIR=/opt/logs/stack
LOG_COLOR=False
# Prevent refreshing of dependencies and DevStack recloning
OFFLINE=True
RECLONE=no
VERBOSE=True
EXTRA_OPTS=(scheduler_default_filters=AllHostsFilter)
disable_all_services
# Core compute (glance+keystone+nova)
enable_service g-api g-reg key n-api n-crt n-obj n-cpu n-cond n-sch n-novnc n-xvnc n-cauth
# dashboard
enable_service horizon
# additional services
enable_service neutron q-svc odl-compute
enable_service mysql qpid tempest
HOST_IP=172.16.150.141
HOST_NAME=fedora141
SERVICE_HOST_NAME=fedora141
SERVICE_HOST=172.16.150.141
Q_HOST=$SERVICE_HOST
# opendaylight ml2 vlan and gre tunnels
ODL_MGR_IP=172.16.150.1
Q_PLUGIN=ml2
Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight
#Q_ML2_PLUGIN_TYPE_DRIVERS=vlan,gre,vxlan
ML2_VLAN_RANGES=physnet1:2000:2999,physnet3:3000:3999
ENABLE_TENANT_VLANS=True
ENABLE_TENANT_TUNNELS=True
#Q_ML2_TENANT_NETWORK_TYPE=gre
ODL_PROVIDER_MAPPINGS=physnet1:eth1
VNCSERVER_PROXYCLIENT_ADDRESS=172.16.150.141
VNCSERVER_LISTEN=0.0.0.0
MYSQL_HOST=$SERVICE_HOST
RABBIT_HOST=$SERVICE_HOST
GLANCE_HOSTPORT=$SERVICE_HOST:9292
KEYSTONE_AUTH_HOST=$SERVICE_HOST
KEYSTONE_SERVICE_HOST=$SERVICE_HOST
MYSQL_PASSWORD=mysql
RABBIT_PASSWORD=rabbit
QPID_PASSWORD=rabbit
SERVICE_TOKEN=service
SERVICE_PASSWORD=admin
ADMIN_PASSWORD=admin
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
[ml2_odl]
url=http://172.16.150.1:8080/controller/nb/v2/neutron
username=admin
password=admin
[agent]
minimize_polling=True

B) compute2 node

# Handy first time commands
cd /opt/devstack
wget -O local.conf https://gist.githubusercontent.com/anonymous/bafd436d7a124e9b1671/raw/gistify240325.txt
sed -i -e 's/^OFFLINE=True$/OFFLINE=False/' ./local.conf && sed -i -e 's/^RECLONE=no/RECLONE=yes/' ./local.conf
# ./stack.sh

[odl@fedora142 devstack]$ cd /opt/devstack && cat local.conf

[[local|localrc]]
LOGFILE=/opt/logs/stack/stack.sh.log
SCREEN_LOGDIR=/opt/logs/stack
LOG_COLOR=False
# Prevent refreshing of dependencies and DevStack recloning
OFFLINE=True
RECLONE=no
VERBOSE=True
EXTRA_OPTS=(scheduler_default_filters=AllHostsFilter)
MULTI_HOST=True
disable_all_services
#opendaylight
enable_service neutron q- n-cpu qpid n-novnc odl-compute
HOST_IP=172.16.150.142
HOST_NAME=fedora142
SERVICE_HOST_NAME=fedora141
SERVICE_HOST=172.16.150.141
Q_HOST=$SERVICE_HOST
# openvswitch ml2
ODL_MGR_IP=172.16.150.1
Q_PLUGIN=ml2
Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight
#Q_ML2_PLUGIN_TYPE_DRIVERS=flat,vlan,gre,vxlan
#ML2_VLAN_RANGES=physnet1:2000:2999,physnet3:3000-3999
ENABLE_TENANT_VLANS=True
ENABLE_TENANT_TUNNELS=True
#Q_ML2_TENANT_NETWORK_TYPE=gre
ODL_PROVIDER_MAPPINGS=physnet1:eth1
VNCSERVER_PROXYCLIENT_ADDRESS=172.16.150.142
VNCSERVER_LISTEN=0.0.0.0
MYSQL_HOST=$SERVICE_HOST
RABBIT_HOST=$SERVICE_HOST
GLANCE_HOSTPORT=$SERVICE_HOST:9292
KEYSTONE_AUTH_HOST=$SERVICE_HOST
KEYSTONE_SERVICE_HOST=$SERVICE_HOST
MYSQL_PASSWORD=mysql
RABBIT_PASSWORD=rabbit
QPID_PASSWORD=rabbit
SERVICE_TOKEN=service
SERVICE_PASSWORD=admin
ADMIN_PASSWORD=admin
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
[ml2_odl]
url=http://172.16.150.1:8080/controller/nb/v2/neutron
username=admin
password=admin
[agent]
minimize_polling=True

C) compute3 node

# Handy first time commands
cd /opt/devstack
wget -O local.conf https://gist.githubusercontent.com/anonymous/eb6863e08fe2d823e861/raw/gistify311930.txt
sed -i -e 's/^OFFLINE=True$/OFFLINE=False/' ./local.conf && sed -i -e 's/^RECLONE=no/RECLONE=yes/' ./local.conf
# ./stack.sh

[odl@fedora143 devstack]$ cd /opt/devstack && cat local.conf

[[local|localrc]]
LOGFILE=/opt/logs/stack/stack.sh.log
SCREEN_LOGDIR=/opt/logs/stack
LOG_COLOR=False
# Prevent refreshing of dependencies and DevStack recloning
OFFLINE=True
RECLONE=no
VERBOSE=True
EXTRA_OPTS=(scheduler_default_filters=AllHostsFilter)
MULTI_HOST=True
disable_all_services
#opendaylight
enable_service neutron q- n-cpu qpid n-novnc odl-compute
HOST_IP=172.16.150.143
HOST_NAME=fedora143
SERVICE_HOST_NAME=fedora141
SERVICE_HOST=172.16.150.141
Q_HOST=$SERVICE_HOST
# openvswitch ml2
ODL_MGR_IP=172.16.150.1
Q_PLUGIN=ml2
Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight
#Q_ML2_PLUGIN_TYPE_DRIVERS=flat,vlan,gre,vxlan
#ML2_VLAN_RANGES=physnet1:2000:2999,physnet3:3000-3999
ENABLE_TENANT_VLANS=True
ENABLE_TENANT_TUNNELS=True
#Q_ML2_TENANT_NETWORK_TYPE=gre
ODL_PROVIDER_MAPPINGS=physnet1:eth1
VNCSERVER_PROXYCLIENT_ADDRESS=172.16.150.143
VNCSERVER_LISTEN=0.0.0.0
MYSQL_HOST=$SERVICE_HOST
RABBIT_HOST=$SERVICE_HOST
GLANCE_HOSTPORT=$SERVICE_HOST:9292
KEYSTONE_AUTH_HOST=$SERVICE_HOST
KEYSTONE_SERVICE_HOST=$SERVICE_HOST
MYSQL_PASSWORD=mysql
RABBIT_PASSWORD=rabbit
QPID_PASSWORD=rabbit
SERVICE_TOKEN=service
SERVICE_PASSWORD=admin
ADMIN_PASSWORD=admin
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
[ml2_odl]
url=http://172.16.150.1:8080/controller/nb/v2/neutron
username=admin
password=admin
[agent]
minimize_polling=True

D) network node

# Handy first time commands
cd /opt/devstack
wget -O local.conf https://gist.githubusercontent.com/anonymous/02fec47445ce37fb3961/raw/gistify193848.txt
sed -i -e 's/^OFFLINE=True$/OFFLINE=False/' ./local.conf && sed -i -e 's/^RECLONE=no/RECLONE=yes/' ./local.conf
# ./stack.sh

[odl@fedora144 devstack]$ cd /opt/devstack && cat local.conf

[[local|localrc]]
LOGFILE=/opt/logs/stack/stack.sh.log
# Logging Section
SCREEN_LOGDIR=/opt/logs/stack
LOG_COLOR=False
# Prevent refreshing of dependencies and DevStack recloning
OFFLINE=True
RECLONE=no
VERBOSE=True
EXTRA_OPTS=(scheduler_default_filters=AllHostsFilter)
disable_all_services
# network
enable_service neutron q-l3 q-dhcp q-meta odl-compute
# additional services
enable_service qpid
HOST_IP=172.16.150.144
HOST_NAME=fedora144
SERVICE_HOST_NAME=fedora141
SERVICE_HOST=172.16.150.141
Q_HOST=$SERVICE_HOST
# opendaylight ml2 vlan and gre tunnels
ODL_MGR_IP=172.16.150.1
Q_PLUGIN=ml2
Q_ML2_PLUGIN_MECHANISM_DRIVERS=opendaylight
#Q_ML2_PLUGIN_TYPE_DRIVERS=vlan,gre,vxlan
ML2_VLAN_RANGES=physnet1:2000:2999,physnet3:3000:3999
ENABLE_TENANT_VLANS=True
ENABLE_TENANT_TUNNELS=True
#Q_ML2_TENANT_NETWORK_TYPE=gre
ODL_PROVIDER_MAPPINGS=physnet1:eth1
VNCSERVER_PROXYCLIENT_ADDRESS=172.16.150.144
VNCSERVER_LISTEN=0.0.0.0
MYSQL_HOST=$SERVICE_HOST
RABBIT_HOST=$SERVICE_HOST
GLANCE_HOSTPORT=$SERVICE_HOST:9292
KEYSTONE_AUTH_HOST=$SERVICE_HOST
KEYSTONE_SERVICE_HOST=$SERVICE_HOST
MYSQL_PASSWORD=mysql
RABBIT_PASSWORD=rabbit
QPID_PASSWORD=rabbit
SERVICE_TOKEN=service
SERVICE_PASSWORD=admin
ADMIN_PASSWORD=admin
[[post-config|/etc/neutron/plugins/ml2/ml2_conf.ini]]
[ml2_odl]
url=http://172.16.150.1:8080/controller/nb/v2/neutron
username=admin
password=admin
[agent]
minimize_polling=True

Starting Opendaylight controller

At this point, I'm assuming that the 4 nodes are up and running, up to the point where you can call 'stack.sh' from the directory where local.conf is located (cd /opt/devstack)

Once local.conf is set as shown above, it is time to start OpendayLight, our favorite SDN controller! You do have a choice of running ODL inside the control node, but I normally run it outside the context of the VMs. In my case, the nodes will reach ODL via their eth2 interface, to get to my laptop: 172.16.150.1. And that is why local.conf has that address in the ml2_odl section. If you rather run ODL inside control node, enable the odl-server service in local.conf.

Install pre-requisites
$ sudo yum install -y java-1.7.0-openjdk

Download The OpenDaylight Virtualization Distribution
$ wget http://nexus.opendaylight.org/content/repositories/opendaylight.release/org/opendaylight/integration/distributions-virtualization/0.1.0/distributions-virtualization-0.1.0-osgipackage.zip
$ unzip distributions-virtualization-0.1.0-osgipackage.zip

Run the Controller
$ cd opendaylight

Using OpenFlow v1.0
$ ./run.sh -XX:MaxPermSize=384m -virt ovsdb
-- OR --
Using OpenFlow v1.3
$ echo "of.listenport=6653" >> configuration/config.ini
$ echo "ovsdb.of.version=1.3" >>  configuration/config.ini
$ ./run.sh -XX:MaxPermSize=384m -virt ovsdb -of13

Running stack.sh on nodes

At this point, invoke cd /opt/devstack && ./stack.sh from the nodes. I normally do that in this order: 1)control+compute1; 2)network; 3)compute2; 4)compute3. If this is the first time you are doing this, remember the notes above.

If you hit failures in stack.sh due to things not being 'clean', try invoking ./unstack.sh . If that does not work, you can also use /opt/osreset.sh which will take extra steps to clean up the state of the node.


Make Tenants

It is time to put openstack to work. What we do here is to create 2 tenants: coke and pepsi. For each tenant, we create 2 subnets and a router. We also create an external network, which connects both tenant's routers. Lastly, we assign floating ip addresses to each instance, which allows them to reach each other by going through the external network. The overlay network is using gre tunnels, and that --together with ip namespaces-- allows the tenants to use the same subnets while being completely isolated from each other.

https://gist.github.com/2099991f4194f6056d27

topology

cd /opt/devstack

source openrc admin admin

# create ssh key for each tenant
# 
for x in coke pepsi ; do echo "ssh key for ${x}" ; \
   rm -f id_rsa_${x}* ; ssh-keygen -t rsa -b 2048 -N '' -f id_rsa_${x} ; done

# create external network
#
neutron net-create ext-net -- --router:external=True
neutron subnet-create ext-net --allocation-pool start=172.16.18.200,end=172.16.18.210 --gateway=172.16.18.2 --enable_dhcp=False 172.16.18.0/24

# Update policy to allow icmp and ssh
#
for uuid in $(neutron security-group-list | grep default | awk '{print $2}') ; do echo "uuid ${uuid}" ; \
    for direction in ingress egress ; do echo “direction ${direction}” ; \
        neutron security-group-rule-create --protocol icmp --direction ${direction} ${uuid} ; \
        neutron security-group-rule-create --protocol tcp --port-range-min 22 --port-range-max 22 --direction ${direction} ${uuid} ; \
done ; done

# Create 2 subnets for each tenant. Notice that the segmentation_id must be unique, but the subnets do not
#
for x in coke pepsi ; do echo "configuring ${x} tenant" ; \
    keystone tenant-create --name ${x}
    keystone user-create --name ${x} --tenant ${x} --pass ${x}
    keystone user-role-add --user ${x} --role admin --tenant ${x}

    [ ${x} == 'coke' ] && tunnelId1=593 || tunnelId1=768
    neutron net-create ${x}gre --tenant-id $(keystone tenant-list | grep '\s'${x}'' | awk '{print $2}') --provider:network_type gre --provider:segmentation_id ${tunnelId1}
    neutron subnet-create ${x}gre 10.210.1.0/24 --name ${x}gre --dns-nameserver 8.8.8.8

    [ ${x} == 'coke' ] && tunnelId2=594 || tunnelId2=769
    neutron net-create ${x}gre2 --tenant-id $(keystone tenant-list | grep '\s'${x}'' | awk '{print $2}') --provider:network_type gre --provider:segmentation_id ${tunnelId2}
    neutron subnet-create ${x}gre2 10.210.2.0/24 --name ${x}gre2 --dns-nameserver 8.8.8.8
done

# Add ssh key and a dedicated router instance to each tenant
#
for x in coke pepsi ; do echo "configuring ${x} tenant key and router" ; \
    source openrc ${x} ${x} ; export OS_PASSWORD=${x}

    nova keypair-add --pub-key  id_rsa_${x}.pub  ${x}_key
    # nova keypair-list

    neutron router-create ${x}router
    neutron router-gateway-set ${x}router ext-net
    neutron router-interface-add ${x}router ${x}gre
    neutron router-interface-add ${x}router ${x}gre2
    # neutron router-port-list ${x}router
done

# This loop will create 3 instances for each tenant. 1 out of the 3 will be in a separate subnet, which means it will
# still be able to reach the other 2 tenants but only through the tenants router
# 
for x in coke pepsi ; do echo "creating ${x} tenant instances" ; \
    source openrc ${x} ${x} ; export OS_PASSWORD=${x}

    nova boot --poll --flavor m1.nano --image $(nova image-list | grep 'cirros-0.3.2-x86_64-uec\s' | awk '{print $2}') --nic net-id=$(neutron net-list | grep -w ${x}gre2 | awk '{print $2}') --key-name ${x}_key ${x}21
    nova boot --poll --flavor m1.nano --image $(nova image-list | grep 'cirros-0.3.2-x86_64-uec\s' | awk '{print $2}') --nic net-id=$(neutron net-list | grep -w ${x}gre2 | awk '{print $2}') --key-name ${x}_key ${x}22
    nova boot --poll --flavor m1.nano --image $(nova image-list | grep 'cirros-0.3.2-x86_64-uec\s' | awk '{print $2}') --nic net-id=$(neutron net-list | grep -w ${x}gre | awk '{print $2}') --key-name ${x}_key ${x}11
done

# This loop will take public ips from a common pool and assign them to coke and pepsi tenants. Using these, the tenants can
# reach the outside world and find each other.
#
for x in coke pepsi ; do echo "creating ${x} tenants floating ips" ; \
    source openrc ${x} ${x} ; export OS_PASSWORD=${x}

    for instanceName in ${x}21 ${x}22 ${x}11 ; do echo ${instanceName} ; \
       currIp=$(nova floating-ip-create ext-net | grep 'ext-net' | awk '{print $2}') ; \
       nova add-floating-ip ${instanceName} ${currIp} ; \
       echo "nova add-floating-ip ${instanceName} ${currIp}" ; \
done ; done

Inspecting

To check how things work, it helps looking at the bridges and tunnels that ODL created in order to connect nodes and its tenants.

net

Notice which nodes ended up hosting the various instances. In the picture below, only pepsi tenants display their floating ip. That is so, because we were logged is as pepsi at the time.

compute

A) control + compute1 -- fedora141 (172.16.150.141)

[odl@fedora141 devstack]$ sudo ovs-vsctl show
c5c9e97f-7076-4590-aa1f-de51b5a3c324
Manager "tcp:172.16.150.1:6640"
is_connected: true
Bridge br-int
Controller "tcp:172.16.150.1:6633"
is_connected: true
fail_mode: secure
Port "gre-172.16.150.143"
Interface "gre-172.16.150.143"
type: gre
options: {key=flow, local_ip="172.16.150.141", remote_ip="172.16.150.143"}
Port "tapffd20bfe-2e"
Interface "tapffd20bfe-2e"
Port br-int
Interface br-int
Port "gre-172.16.150.144"
Interface "gre-172.16.150.144"
type: gre
options: {key=flow, local_ip="172.16.150.141", remote_ip="172.16.150.144"}
Port "gre-172.16.150.142"
Interface "gre-172.16.150.142"
type: gre
options: {key=flow, local_ip="172.16.150.141", remote_ip="172.16.150.142"}
Port "tapf589211c-59"
Interface "tapf589211c-59"
ovs_version: "2.1.2"
[odl@fedora141 devstack]$
[odl@fedora141 devstack]$
[odl@fedora141 devstack]$ sudo ovs-ofctl -O OpenFlow13 show br-int
OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:00004a7158122146
n_tables:254, n_buffers:256
capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x4): frags=normal miss_send_len=0
[odl@fedora141 devstack]$
[odl@fedora141 devstack]$
[odl@fedora141 devstack]$ sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=8414.970s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=70:65:6e:66:6c:6f actions=output:3
cookie=0x0, duration=8414.620s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=70:65:6e:66:6c:6f actions=output:3
cookie=0x0, duration=8483.737s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=32:36:36:30:30:34 actions=output:3
cookie=0x0, duration=9275.757s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=9275.755s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=8416.937s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=70:65:6e:66:6c:6f actions=output:3
cookie=0x0, duration=9275.755s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=9415.221s, table=0, n_packets=11, n_bytes=754, send_flow_rem tun_id=0x251,in_port=1 actions=goto_table:20
cookie=0x0, duration=9414.285s, table=0, n_packets=30, n_bytes=1440, send_flow_rem tun_id=0x1,in_port=1 actions=goto_table:20
cookie=0x0, duration=9384.680s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x252,in_port=3 actions=goto_table:20
cookie=0x0, duration=9410.866s, table=0, n_packets=24, n_bytes=2361, send_flow_rem tun_id=0x252,in_port=1 actions=goto_table:20
cookie=0x0, duration=9384.630s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,in_port=4 actions=goto_table:20
cookie=0x0, duration=9342.741s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x300,in_port=4 actions=goto_table:20
cookie=0x0, duration=9410.421s, table=0, n_packets=10, n_bytes=664, send_flow_rem tun_id=0x300,in_port=1 actions=goto_table:20
cookie=0x0, duration=9316.322s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,in_port=4 actions=goto_table:20
cookie=0x0, duration=9409.328s, table=0, n_packets=6663, n_bytes=632315, send_flow_rem tun_id=0x301,in_port=1 actions=goto_table:20
cookie=0x0, duration=9348.848s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x301,in_port=3 actions=goto_table:20
cookie=0x0, duration=9348.854s, table=0, n_packets=7, n_bytes=944, send_flow_rem tun_id=0x251,in_port=4 actions=goto_table:20
cookie=0x0, duration=9316.967s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=5 actions=drop
cookie=0x0, duration=9385.064s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=2 actions=drop
cookie=0x0, duration=9385.072s, table=0, n_packets=12, n_bytes=1393, send_flow_rem in_port=2,dl_src=fa:16:3e:b7:1e:08 actions=set_field:0x252->tun_id,goto_table:10
cookie=0x0, duration=9316.993s, table=0, n_packets=6652, n_bytes=631457, send_flow_rem in_port=5,dl_src=fa:16:3e:f0:e3:68 actions=set_field:0x301->tun_id,goto_table:10
cookie=0x0, duration=9615.647s, table=0, n_packets=5620, n_bytes=511420, send_flow_rem dl_type=0x88cc actions=CONTROLLER:56
cookie=0x0, duration=9385.025s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x252 actions=goto_table:20
cookie=0x0, duration=9316.859s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x301 actions=goto_table:20
cookie=0x0, duration=9357.614s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:5b:ad:a0 actions=output:1,goto_table:20
cookie=0x0, duration=9363.112s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:57:a2:a3 actions=output:1,goto_table:20
cookie=0x0, duration=9342.720s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:0c:05:a1 actions=output:1,goto_table:20
cookie=0x0, duration=9414.293s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:6a:5d:26 actions=output:1,goto_table:20
cookie=0x0, duration=9388.882s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:8f:21:d1 actions=output:1,goto_table:20
cookie=0x0, duration=9409.339s, table=10, n_packets=6649, n_bytes=630757, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:05:a2:f0 actions=output:1,goto_table:20
cookie=0x0, duration=9342.741s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:b7:09:71 actions=output:4,goto_table:20
cookie=0x0, duration=9381.529s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:3e:07:18 actions=output:3,goto_table:20
cookie=0x0, duration=9348.848s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:04:36:79 actions=output:3,goto_table:20
cookie=0x0, duration=9415.231s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:8a:0e:d2 actions=output:1,goto_table:20
cookie=0x0, duration=9410.430s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:95:65:a5 actions=output:1,goto_table:20
cookie=0x0, duration=9407.570s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:13:48:b5 actions=output:1,goto_table:20
cookie=0x0, duration=9348.854s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:74:56:a8 actions=output:4,goto_table:20
cookie=0x0, duration=9410.893s, table=10, n_packets=3, n_bytes=225, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:c2:20:80 actions=output:1,goto_table:20
cookie=0x0, duration=9410.865s, table=10, n_packets=9, n_bytes=1168, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:3,output:4,goto_table:20
cookie=0x0, duration=9415.212s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:4,goto_table:20
cookie=0x0, duration=9414.275s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,goto_table:20
cookie=0x0, duration=9409.315s, table=10, n_packets=3, n_bytes=700, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:3,output:4,goto_table:20
cookie=0x0, duration=9410.410s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:4,goto_table:20
cookie=0x0, duration=9385.016s, table=20, n_packets=3, n_bytes=225, send_flow_rem priority=8192,tun_id=0x252 actions=drop
cookie=0x0, duration=9316.821s, table=20, n_packets=6649, n_bytes=630757, send_flow_rem priority=8192,tun_id=0x301 actions=drop
cookie=0x0, duration=9316.923s, table=20, n_packets=6652, n_bytes=631561, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:f0:e3:68 actions=output:5
cookie=0x0, duration=9385.051s, table=20, n_packets=6, n_bytes=1029, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:b7:1e:08 actions=output:2
cookie=0x0, duration=9385.040s, table=20, n_packets=20, n_bytes=2476, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2
cookie=0x0, duration=9316.885s, table=20, n_packets=3, n_bytes=700, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:5

B) compute2 -- fedora142 (172.16.150.142)

[odl@fedora142 devstack]$ sudo ovs-vsctl show
2859a640-1a3c-4fe3-ae7f-ec653c9f17ed
Manager "tcp:172.16.150.1:6640"
is_connected: true
Bridge br-int
Controller "tcp:172.16.150.1:6633"
is_connected: true
fail_mode: secure
Port "gre-172.16.150.143"
Interface "gre-172.16.150.143"
type: gre
options: {key=flow, local_ip="172.16.150.142", remote_ip="172.16.150.143"}
Port "gre-172.16.150.141"
Interface "gre-172.16.150.141"
type: gre
options: {key=flow, local_ip="172.16.150.142", remote_ip="172.16.150.141"}
Port "tap35aa6b50-c3"
Interface "tap35aa6b50-c3"
Port br-int
Interface br-int
Port "gre-172.16.150.144"
Interface "gre-172.16.150.144"
type: gre
options: {key=flow, local_ip="172.16.150.142", remote_ip="172.16.150.144"}
Port "tapba006229-0e"
Interface "tapba006229-0e"
ovs_version: "2.1.2"
[odl@fedora142 devstack]$ sudo ovs-ofctl -O OpenFlow13 show br-int
OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:00009a74e9fe974e
n_tables:254, n_buffers:256
capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x4): frags=normal miss_send_len=0
[odl@fedora142 devstack]$
[odl@fedora142 devstack]$ sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=8723.421s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=32:36:36:30:30:34 actions=output:1
cookie=0x0, duration=8655.412s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=9515.695s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=9515.699s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=8655.833s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=8659.245s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=9518.106s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=9656.212s, table=0, n_packets=11, n_bytes=754, send_flow_rem tun_id=0x251,in_port=1 actions=goto_table:20
cookie=0x0, duration=9655.279s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,in_port=1 actions=goto_table:20
cookie=0x0, duration=9651.920s, table=0, n_packets=6596, n_bytes=626761, send_flow_rem tun_id=0x252,in_port=1 actions=goto_table:20
cookie=0x0, duration=9622.439s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,in_port=4 actions=goto_table:20
cookie=0x0, duration=9585.946s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x300,in_port=4 actions=goto_table:20
cookie=0x0, duration=9625.599s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x252,in_port=2 actions=goto_table:20
cookie=0x0, duration=9651.424s, table=0, n_packets=10, n_bytes=664, send_flow_rem tun_id=0x300,in_port=1 actions=goto_table:20
cookie=0x0, duration=9589.484s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,in_port=4 actions=goto_table:20
cookie=0x0, duration=9650.340s, table=0, n_packets=6596, n_bytes=626141, send_flow_rem tun_id=0x301,in_port=1 actions=goto_table:20
cookie=0x0, duration=9590.028s, table=0, n_packets=3, n_bytes=700, send_flow_rem tun_id=0x301,in_port=2 actions=goto_table:20
cookie=0x0, duration=9590.030s, table=0, n_packets=7, n_bytes=944, send_flow_rem tun_id=0x251,in_port=4 actions=goto_table:20
cookie=0x0, duration=9622.642s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=3 actions=drop
cookie=0x0, duration=9591.138s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=5 actions=drop
cookie=0x0, duration=9591.325s, table=0, n_packets=5738, n_bytes=518334, send_flow_rem dl_type=0x88cc actions=CONTROLLER:56
cookie=0x0, duration=9591.258s, table=0, n_packets=6591, n_bytes=625751, send_flow_rem in_port=5,dl_src=fa:16:3e:04:36:79 actions=set_field:0x301->tun_id,goto_table:10
cookie=0x0, duration=9622.655s, table=0, n_packets=6584, n_bytes=625793, send_flow_rem in_port=3,dl_src=fa:16:3e:3e:07:18 actions=set_field:0x252->tun_id,goto_table:10
cookie=0x0, duration=9622.599s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x252 actions=goto_table:20
cookie=0x0, duration=9590.705s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x301 actions=goto_table:20
cookie=0x0, duration=9602.437s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:57:a2:a3 actions=output:1,goto_table:20
cookie=0x0, duration=9557.427s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:f0:e3:68 actions=output:2,goto_table:20
cookie=0x0, duration=9584.574s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:0c:05:a1 actions=output:1,goto_table:20
cookie=0x0, duration=9655.290s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:6a:5d:26 actions=output:1,goto_table:20
cookie=0x0, duration=9629.940s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:8f:21:d1 actions=output:1,goto_table:20
cookie=0x0, duration=9650.350s, table=10, n_packets=6582, n_bytes=624583, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:05:a2:f0 actions=output:1,goto_table:20
cookie=0x0, duration=9585.947s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:b7:09:71 actions=output:4,goto_table:20
cookie=0x0, duration=9656.221s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:8a:0e:d2 actions=output:1,goto_table:20
cookie=0x0, duration=9651.434s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:95:65:a5 actions=output:1,goto_table:20
cookie=0x0, duration=9648.559s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:13:48:b5 actions=output:1,goto_table:20
cookie=0x0, duration=9625.608s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:b7:1e:08 actions=output:2,goto_table:20
cookie=0x0, duration=9590.704s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:74:56:a8 actions=output:4,goto_table:20
cookie=0x0, duration=9651.930s, table=10, n_packets=6575, n_bytes=624625, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:c2:20:80 actions=output:1,goto_table:20
cookie=0x0, duration=9651.909s, table=10, n_packets=9, n_bytes=1168, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:2,output:4,goto_table:20
cookie=0x0, duration=9656.203s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:4,goto_table:20
cookie=0x0, duration=9655.269s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,goto_table:20
cookie=0x0, duration=9650.327s, table=10, n_packets=9, n_bytes=1168, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:2,output:4,goto_table:20
cookie=0x0, duration=9651.414s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:4,goto_table:20
cookie=0x0, duration=9622.587s, table=20, n_packets=6575, n_bytes=624625, send_flow_rem priority=8192,tun_id=0x252 actions=drop
cookie=0x0, duration=9590.704s, table=20, n_packets=6582, n_bytes=624583, send_flow_rem priority=8192,tun_id=0x301 actions=drop
cookie=0x0, duration=9622.630s, table=20, n_packets=6578, n_bytes=625429, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:3e:07:18 actions=output:3
cookie=0x0, duration=9590.999s, table=20, n_packets=6585, n_bytes=625387, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:04:36:79 actions=output:5
cookie=0x0, duration=9622.618s, table=20, n_packets=19, n_bytes=2406, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:3
cookie=0x0, duration=9590.841s, table=20, n_packets=12, n_bytes=1868, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:5
[odl@fedora142 devstack]$

C) compute3 -- fedora143 (172.16.150.143)

[odl@fedora143 devstack]$ sudo ovs-vsctl show
a15f0998-3fbb-4c2b-ae9f-4bb0aae95fb5
Manager "tcp:172.16.150.1:6640"
is_connected: true
Bridge br-int
Controller "tcp:172.16.150.1:6633"
is_connected: true
fail_mode: secure
Port "tapa9cfc54d-0d"
Interface "tapa9cfc54d-0d"
Port "tap30f97f92-0d"
Interface "tap30f97f92-0d"
Port "gre-172.16.150.142"
Interface "gre-172.16.150.142"
type: gre
options: {key=flow, local_ip="172.16.150.143", remote_ip="172.16.150.142"}
Port "gre-172.16.150.144"
Interface "gre-172.16.150.144"
type: gre
options: {key=flow, local_ip="172.16.150.143", remote_ip="172.16.150.144"}
Port br-int
Interface br-int
Port "gre-172.16.150.141"
Interface "gre-172.16.150.141"
type: gre
options: {key=flow, local_ip="172.16.150.143", remote_ip="172.16.150.141"}
ovs_version: "2.1.2"
[odl@fedora143 devstack]$
[odl@fedora143 devstack]$
[odl@fedora143 devstack]$ sudo ovs-ofctl -O OpenFlow13 show br-int
OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:00007a0e63111542
n_tables:254, n_buffers:256
capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x4): frags=normal miss_send_len=0
[odl@fedora143 devstack]$
[odl@fedora143 devstack]$
[odl@fedora143 devstack]$ sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=8791.729s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=8791.729s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=9642.333s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=1,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=8843.956s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=32:36:36:30:30:34 actions=output:1
cookie=0x0, duration=9642.307s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=8843.972s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=32:36:36:30:30:34 actions=output:1
cookie=0x0, duration=9642.320s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=00:00:00:00:00:00 actions=output:1
cookie=0x0, duration=8791.735s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=2,dl_dst=70:65:6e:66:6c:6f actions=output:1
cookie=0x0, duration=9783.034s, table=0, n_packets=203, n_bytes=19115, send_flow_rem tun_id=0x251,in_port=1 actions=goto_table:20
cookie=0x0, duration=9782.095s, table=0, n_packets=30, n_bytes=1440, send_flow_rem tun_id=0x1,in_port=1 actions=goto_table:20
cookie=0x0, duration=9749.292s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x252,in_port=3 actions=goto_table:20
cookie=0x0, duration=9715.851s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,in_port=3 actions=goto_table:20
cookie=0x0, duration=9778.685s, table=0, n_packets=17, n_bytes=1242, send_flow_rem tun_id=0x252,in_port=1 actions=goto_table:20
cookie=0x0, duration=9717.805s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,in_port=3 actions=goto_table:20
cookie=0x0, duration=9717.340s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,in_port=2 actions=goto_table:20
cookie=0x0, duration=9752.461s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x252,in_port=2 actions=goto_table:20
cookie=0x0, duration=9715.850s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,in_port=2 actions=goto_table:20
cookie=0x0, duration=9778.226s, table=0, n_packets=6459, n_bytes=613843, send_flow_rem tun_id=0x300,in_port=1 actions=goto_table:20
cookie=0x0, duration=9777.124s, table=0, n_packets=11, n_bytes=754, send_flow_rem tun_id=0x301,in_port=1 actions=goto_table:20
cookie=0x0, duration=9684.121s, table=0, n_packets=3, n_bytes=700, send_flow_rem tun_id=0x301,in_port=2 actions=goto_table:20
cookie=0x0, duration=9716.469s, table=0, n_packets=9, n_bytes=1168, send_flow_rem tun_id=0x301,in_port=3 actions=goto_table:20
cookie=0x0, duration=9716.962s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=5 actions=drop
cookie=0x0, duration=9717.883s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=4 actions=drop
cookie=0x0, duration=8780.964s, table=0, n_packets=5268, n_bytes=475876, send_flow_rem dl_type=0x88cc actions=CONTROLLER:56
cookie=0x0, duration=9717.883s, table=0, n_packets=194, n_bytes=18417, send_flow_rem in_port=4,dl_src=fa:16:3e:74:56:a8 actions=set_field:0x251->tun_id,goto_table:10
cookie=0x0, duration=9716.963s, table=0, n_packets=6456, n_bytes=613585, send_flow_rem in_port=5,dl_src=fa:16:3e:b7:09:71 actions=set_field:0x300->tun_id,goto_table:10
cookie=0x0, duration=9716.736s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x300 actions=goto_table:20
cookie=0x0, duration=9717.882s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x251 actions=goto_table:20
cookie=0x0, duration=9727.661s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:5b:ad:a0 actions=output:1,goto_table:20
cookie=0x0, duration=9731.047s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:57:a2:a3 actions=output:1,goto_table:20
cookie=0x0, duration=9684.137s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:f0:e3:68 actions=output:2,goto_table:20
cookie=0x0, duration=9711.018s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:0c:05:a1 actions=output:1,goto_table:20
cookie=0x0, duration=9782.106s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:6a:5d:26 actions=output:1,goto_table:20
cookie=0x0, duration=9756.686s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:8f:21:d1 actions=output:1,goto_table:20
cookie=0x0, duration=9777.133s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:05:a2:f0 actions=output:1,goto_table:20
cookie=0x0, duration=9749.301s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:3e:07:18 actions=output:3,goto_table:20
cookie=0x0, duration=9716.735s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:04:36:79 actions=output:3,goto_table:20
cookie=0x0, duration=9783.043s, table=10, n_packets=187, n_bytes=17473, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:8a:0e:d2 actions=output:1,goto_table:20
cookie=0x0, duration=9778.238s, table=10, n_packets=6447, n_bytes=612417, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:95:65:a5 actions=output:1,goto_table:20
cookie=0x0, duration=9775.381s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:13:48:b5 actions=output:1,goto_table:20
cookie=0x0, duration=9752.471s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:b7:1e:08 actions=output:2,goto_table:20
cookie=0x0, duration=9778.694s, table=10, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:c2:20:80 actions=output:1,goto_table:20
cookie=0x0, duration=9778.674s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:2,output:3,goto_table:20
cookie=0x0, duration=9783.025s, table=10, n_packets=7, n_bytes=944, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:3,output:2,goto_table:20
cookie=0x0, duration=9782.085s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,goto_table:20
cookie=0x0, duration=9777.108s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:3,output:2,goto_table:20
cookie=0x0, duration=9778.217s, table=10, n_packets=9, n_bytes=1168, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:3,output:2,goto_table:20
cookie=0x0, duration=9716.469s, table=20, n_packets=6447, n_bytes=612417, send_flow_rem priority=8192,tun_id=0x300 actions=drop
cookie=0x0, duration=9717.882s, table=20, n_packets=187, n_bytes=17473, send_flow_rem priority=8192,tun_id=0x251 actions=drop
cookie=0x0, duration=9716.949s, table=20, n_packets=6450, n_bytes=613221, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:b7:09:71 actions=output:5
cookie=0x0, duration=9717.883s, table=20, n_packets=192, n_bytes=18361, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:74:56:a8 actions=output:4
cookie=0x0, duration=9717.882s, table=20, n_packets=7, n_bytes=944, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:4
cookie=0x0, duration=9716.875s, table=20, n_packets=10, n_bytes=1238, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:5
[odl@fedora143 devstack]$

D) network -- fedora144 (172.16.150.144)

[odl@fedora144 devstack]$ sudo ovs-vsctl show
290e1d22-2925-4ee9-b5d3-97bb13aad7ce
Manager "tcp:172.16.150.1:6640"
is_connected: true
Bridge br-ex
Controller "tcp:172.16.150.1:6633"
is_connected: true
Port "qg-3bc202cd-e2"
Interface "qg-3bc202cd-e2"
type: internal
Port "qg-53ac72eb-ef"
Interface "qg-53ac72eb-ef"
type: internal
Port br-ex
Interface br-ex
type: internal
Bridge br-int
Controller "tcp:172.16.150.1:6633"
is_connected: true
fail_mode: secure
Port "tapa6e1a32a-e7"
Interface "tapa6e1a32a-e7"
type: internal
Port "gre-172.16.150.143"
Interface "gre-172.16.150.143"
type: gre
options: {key=flow, local_ip="172.16.150.144", remote_ip="172.16.150.143"}
Port "qr-22e9edb2-f4"
Interface "qr-22e9edb2-f4"
type: internal
Port "qr-ab6f8446-29"
Interface "qr-ab6f8446-29"
type: internal
Port "qr-5772753e-72"
Interface "qr-5772753e-72"
type: internal
Port "tap848a0f6f-e3"
Interface "tap848a0f6f-e3"
type: internal
Port "gre-172.16.150.141"
Interface "gre-172.16.150.141"
type: gre
options: {key=flow, local_ip="172.16.150.144", remote_ip="172.16.150.141"}
Port "qr-54553eab-6d"
Interface "qr-54553eab-6d"
type: internal
Port "gre-172.16.150.142"
Interface "gre-172.16.150.142"
type: gre
options: {key=flow, local_ip="172.16.150.144", remote_ip="172.16.150.142"}
Port "tapc9694c13-5a"
Interface "tapc9694c13-5a"
type: internal
Port br-int
Interface br-int
Port "tapab82e047-fc"
Interface "tapab82e047-fc"
type: internal
ovs_version: "2.1.2"
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$ sudo ovs-ofctl -O OpenFlow13 show br-ex
OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:000042a8ee274243
n_tables:254, n_buffers:256
capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x4): frags=normal miss_send_len=0
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$ sudo ovs-ofctl -O OpenFlow13 dump-flows br-ex
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=9448.599s, table=0, n_packets=381, n_bytes=16002, send_flow_rem priority=1,in_port=1,dl_dst=fa:16:3e:13:48:b5 actions=output:2
cookie=0x0, duration=9463.625s, table=0, n_packets=381, n_bytes=16002, send_flow_rem priority=1,in_port=2,dl_dst=fa:16:3e:6a:5d:26 actions=output:1
cookie=0x0, duration=9856.502s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,ip,nw_dst=172.16.18.201 actions=set_field:fa:16:3e:13:48:b5->eth_dst,output:2
cookie=0x0, duration=9743.495s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,ip,nw_dst=172.16.18.202 actions=set_field:fa:16:3e:6a:5d:26->eth_dst,output:1
cookie=0x0, duration=9739.642s, table=0, n_packets=170, n_bytes=16660, send_flow_rem priority=1,ip,nw_dst=172.16.18.204 actions=set_field:fa:16:3e:6a:5d:26->eth_dst,output:1
cookie=0x0, duration=9736.016s, table=0, n_packets=6215, n_bytes=609070, send_flow_rem priority=1,ip,nw_dst=172.16.18.206 actions=set_field:fa:16:3e:13:48:b5->eth_dst,output:2
cookie=0x0, duration=9741.110s, table=0, n_packets=6221, n_bytes=609658, send_flow_rem priority=1,ip,nw_dst=172.16.18.203 actions=set_field:fa:16:3e:6a:5d:26->eth_dst,output:1
cookie=0x0, duration=9857.262s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,ip,nw_dst=172.16.18.200 actions=set_field:fa:16:3e:6a:5d:26->eth_dst,output:1
cookie=0x0, duration=9734.618s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,ip,nw_dst=172.16.18.207 actions=set_field:fa:16:3e:13:48:b5->eth_dst,output:2
cookie=0x0, duration=9738.248s, table=0, n_packets=176, n_bytes=17248, send_flow_rem priority=1,ip,nw_dst=172.16.18.205 actions=set_field:fa:16:3e:13:48:b5->eth_dst,output:2
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$ sudo ovs-ofctl -O OpenFlow13 show br-int
OFPT_FEATURES_REPLY (OF1.3) (xid=0x2): dpid:0000828e11aa7543
n_tables:254, n_buffers:256
capabilities: FLOW_STATS TABLE_STATS PORT_STATS QUEUE_STATS
OFPT_GET_CONFIG_REPLY (OF1.3) (xid=0x4): frags=normal miss_send_len=0
[odl@fedora144 devstack]$
[odl@fedora144 devstack]$ sudo ovs-ofctl -O OpenFlow13 dump-flows br-int
OFPST_FLOW reply (OF1.3) (xid=0x2):
cookie=0x0, duration=4985.545s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=6e:66:6c:6f:77:3a actions=output:4
cookie=0x0, duration=8706.350s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=6e:66:6c:6f:77:3a actions=output:4
cookie=0x0, duration=8876.913s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=70:65:6e:66:6c:6f actions=output:4
cookie=0x0, duration=9739.363s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=00:00:00:00:00:00 actions=output:3
cookie=0x0, duration=9739.369s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=3,dl_dst=00:00:00:00:00:00 actions=output:3
cookie=0x0, duration=4305.411s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=77:3a:31:34:33:35 actions=output:4
cookie=0x0, duration=8881.161s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=1,in_port=4,dl_dst=70:65:6e:66:6c:6f actions=output:4
cookie=0x0, duration=9875.695s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,in_port=4 actions=goto_table:20
cookie=0x0, duration=9872.378s, table=0, n_packets=12, n_bytes=1393, send_flow_rem tun_id=0x252,in_port=3 actions=goto_table:20
cookie=0x0, duration=9871.883s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,in_port=3 actions=goto_table:20
cookie=0x0, duration=9872.284s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,in_port=4 actions=goto_table:20
cookie=0x0, duration=9876.675s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,in_port=3 actions=goto_table:20
cookie=0x0, duration=9876.721s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,in_port=2 actions=goto_table:20
cookie=0x0, duration=9871.827s, table=0, n_packets=6456, n_bytes=613585, send_flow_rem tun_id=0x300,in_port=4 actions=goto_table:20
cookie=0x0, duration=9872.432s, table=0, n_packets=6584, n_bytes=625793, send_flow_rem tun_id=0x252,in_port=2 actions=goto_table:20
cookie=0x0, duration=9871.940s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,in_port=2 actions=goto_table:20
cookie=0x0, duration=9870.728s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,in_port=4 actions=goto_table:20
cookie=0x0, duration=9875.739s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,in_port=3 actions=goto_table:20
cookie=0x0, duration=9870.792s, table=0, n_packets=6652, n_bytes=631457, send_flow_rem tun_id=0x301,in_port=3 actions=goto_table:20
cookie=0x0, duration=9870.857s, table=0, n_packets=6591, n_bytes=625751, send_flow_rem tun_id=0x301,in_port=2 actions=goto_table:20
cookie=0x0, duration=9876.631s, table=0, n_packets=194, n_bytes=18417, send_flow_rem tun_id=0x251,in_port=4 actions=goto_table:20
cookie=0x0, duration=9875.793s, table=0, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,in_port=2 actions=goto_table:20
cookie=0x0, duration=9870.917s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=7 actions=drop
cookie=0x0, duration=9850.559s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=8 actions=drop
cookie=0x0, duration=9803.591s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=11 actions=drop
cookie=0x0, duration=9876.773s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=1 actions=drop
cookie=0x0, duration=9825.362s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=9 actions=drop
cookie=0x0, duration=9820.961s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=10 actions=drop
cookie=0x0, duration=9872.483s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=5 actions=drop
cookie=0x0, duration=9872.034s, table=0, n_packets=0, n_bytes=0, send_flow_rem priority=8192,in_port=6 actions=drop
cookie=0x0, duration=9869.113s, table=0, n_packets=44673, n_bytes=1409896, send_flow_rem priority=8192,in_port=2 actions=drop
cookie=0x0, duration=9803.591s, table=0, n_packets=3, n_bytes=804, send_flow_rem in_port=11,dl_src=fa:16:3e:0c:05:a1 actions=set_field:0x300->tun_id,goto_table:10
cookie=0x0, duration=9876.782s, table=0, n_packets=200, n_bytes=18311, send_flow_rem in_port=1,dl_src=fa:16:3e:8a:0e:d2 actions=set_field:0x251->tun_id,goto_table:10
cookie=0x0, duration=9872.490s, table=0, n_packets=6591, n_bytes=625764, send_flow_rem in_port=5,dl_src=fa:16:3e:c2:20:80 actions=set_field:0x252->tun_id,goto_table:10
cookie=0x0, duration=9825.364s, table=0, n_packets=3, n_bytes=804, send_flow_rem in_port=9,dl_src=fa:16:3e:57:a2:a3 actions=set_field:0x251->tun_id,goto_table:10
cookie=0x0, duration=9872.044s, table=0, n_packets=6458, n_bytes=613171, send_flow_rem in_port=6,dl_src=fa:16:3e:95:65:a5 actions=set_field:0x300->tun_id,goto_table:10
cookie=0x0, duration=9850.581s, table=0, n_packets=12, n_bytes=2116, send_flow_rem in_port=8,dl_src=fa:16:3e:8f:21:d1 actions=set_field:0x252->tun_id,goto_table:10
cookie=0x0, duration=9869.122s, table=0, n_packets=30, n_bytes=1440, send_flow_rem in_port=2,dl_src=fa:16:3e:13:48:b5 actions=set_field:0x1->tun_id,goto_table:10
cookie=0x0, duration=9870.926s, table=0, n_packets=13243, n_bytes=1256164, send_flow_rem in_port=7,dl_src=fa:16:3e:05:a2:f0 actions=set_field:0x301->tun_id,goto_table:10
cookie=0x0, duration=9820.961s, table=0, n_packets=5, n_bytes=1538, send_flow_rem in_port=10,dl_src=fa:16:3e:5b:ad:a0 actions=set_field:0x301->tun_id,goto_table:10
cookie=0x0, duration=9875.846s, table=0, n_packets=0, n_bytes=0, send_flow_rem in_port=1,dl_src=fa:16:3e:6a:5d:26 actions=set_field:0x1->tun_id,goto_table:10
cookie=0x0, duration=10046.332s, table=0, n_packets=5904, n_bytes=533326, send_flow_rem dl_type=0x88cc actions=CONTROLLER:56
cookie=0x0, duration=9871.996s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x300 actions=goto_table:20
cookie=0x0, duration=9872.451s, table=10, n_packets=1, n_bytes=90, send_flow_rem priority=8192,tun_id=0x252 actions=goto_table:20
cookie=0x0, duration=9875.813s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x1 actions=goto_table:20
cookie=0x0, duration=9870.881s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x301 actions=goto_table:20
cookie=0x0, duration=9876.741s, table=10, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x251 actions=goto_table:20
cookie=0x0, duration=9809.127s, table=10, n_packets=6450, n_bytes=613221, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:b7:09:71 actions=output:4,goto_table:20
cookie=0x0, duration=9843.028s, table=10, n_packets=6578, n_bytes=625429, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:3e:07:18 actions=output:2,goto_table:20
cookie=0x0, duration=9778.142s, table=10, n_packets=6652, n_bytes=631561, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:f0:e3:68 actions=output:3,goto_table:20
cookie=0x0, duration=9810.955s, table=10, n_packets=6585, n_bytes=625387, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:04:36:79 actions=output:2,goto_table:20
cookie=0x0, duration=9846.404s, table=10, n_packets=6, n_bytes=1029, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:b7:1e:08 actions=output:3,goto_table:20
cookie=0x0, duration=9810.958s, table=10, n_packets=192, n_bytes=18361, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:74:56:a8 actions=output:4,goto_table:20
cookie=0x0, duration=9872.421s, table=10, n_packets=18, n_bytes=1332, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2,output:3,output:4,goto_table:20
cookie=0x0, duration=9876.712s, table=10, n_packets=11, n_bytes=754, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2,output:3,output:4,goto_table:20
cookie=0x0, duration=9875.779s, table=10, n_packets=30, n_bytes=1440, send_flow_rem priority=16384,tun_id=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2,output:3,output:4,goto_table:20
cookie=0x0, duration=9870.843s, table=10, n_packets=11, n_bytes=754, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2,output:3,output:4,goto_table:20
cookie=0x0, duration=9871.926s, table=10, n_packets=10, n_bytes=664, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:2,output:3,output:4,goto_table:20
cookie=0x0, duration=9871.974s, table=20, n_packets=6450, n_bytes=613221, send_flow_rem priority=8192,tun_id=0x300 actions=drop
cookie=0x0, duration=9872.442s, table=20, n_packets=6584, n_bytes=626458, send_flow_rem priority=8192,tun_id=0x252 actions=drop
cookie=0x0, duration=9875.801s, table=20, n_packets=0, n_bytes=0, send_flow_rem priority=8192,tun_id=0x1 actions=drop
cookie=0x0, duration=9870.869s, table=20, n_packets=13237, n_bytes=1256948, send_flow_rem priority=8192,tun_id=0x301 actions=drop
cookie=0x0, duration=9876.731s, table=20, n_packets=192, n_bytes=18361, send_flow_rem priority=8192,tun_id=0x251 actions=drop
cookie=0x0, duration=9820.961s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:5b:ad:a0 actions=output:10
cookie=0x0, duration=9825.362s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:57:a2:a3 actions=output:9
cookie=0x0, duration=9803.591s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:0c:05:a1 actions=output:11
cookie=0x0, duration=9875.831s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:6a:5d:26 actions=output:1
cookie=0x0, duration=9850.539s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:8f:21:d1 actions=output:8
cookie=0x0, duration=9870.905s, table=20, n_packets=13231, n_bytes=1255340, send_flow_rem tun_id=0x301,dl_dst=fa:16:3e:05:a2:f0 actions=output:7
cookie=0x0, duration=9876.762s, table=20, n_packets=187, n_bytes=17473, send_flow_rem tun_id=0x251,dl_dst=fa:16:3e:8a:0e:d2 actions=output:1
cookie=0x0, duration=9872.025s, table=20, n_packets=6447, n_bytes=612417, send_flow_rem tun_id=0x300,dl_dst=fa:16:3e:95:65:a5 actions=output:6
cookie=0x0, duration=9869.102s, table=20, n_packets=0, n_bytes=0, send_flow_rem tun_id=0x1,dl_dst=fa:16:3e:13:48:b5 actions=output:2
cookie=0x0, duration=9872.474s, table=20, n_packets=6578, n_bytes=624850, send_flow_rem tun_id=0x252,dl_dst=fa:16:3e:c2:20:80 actions=output:5
cookie=0x0, duration=9872.463s, table=20, n_packets=37, n_bytes=3758, send_flow_rem priority=16384,tun_id=0x252,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:5,output:8
cookie=0x0, duration=9876.750s, table=20, n_packets=18, n_bytes=1698, send_flow_rem priority=16384,tun_id=0x251,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:9
cookie=0x0, duration=9875.821s, table=20, n_packets=30, n_bytes=1440, send_flow_rem priority=16384,tun_id=0x1,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:1,output:2
cookie=0x0, duration=9870.892s, table=20, n_packets=23, n_bytes=2622, send_flow_rem priority=16384,tun_id=0x301,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:7,output:10
cookie=0x0, duration=9872.012s, table=20, n_packets=19, n_bytes=1832, send_flow_rem priority=16384,tun_id=0x300,dl_dst=01:00:00:00:00:00/01:00:00:00:00:00 actions=output:6,output:11
[odl@fedora144 devstack]$

The picture below shows how coke tenant is able to ping a pepsi tenant, using the floating ip.

ping ping


Extremely helpful links:


Comments