Skip to content

Instantly share code, notes, and snippets.

@drizzt
Last active April 19, 2017 16:30
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save drizzt/3e9c2f95863813b47ae41372bd0b301d to your computer and use it in GitHub Desktop.
#!/bin/sh
OF_VERSION=OpenFlow15
ovs_setenv() {
local ovs_dir=$1
OVS_RUNDIR=$ovs_dir; export OVS_RUNDIR
OVS_LOGDIR=$ovs_dir; export OVS_LOGDIR
OVS_DBDIR=$ovs_dir; export OVS_DBDIR
OVS_SYSCONFDIR=$ovs_dir; export OVS_SYSCONFDIR
OVS_PKGDATADIR=$ovs_dir; export OVS_PKGDATADIR
}
add_of_br () {
local brnum=$1; shift
local br=br$brnum
local dpid=fedcba987654321$brnum
local mac=aa:55:aa:55:00:0$brnum
utilities/ovs-vsctl --timeout=20 \
-- add-br $br \
-- set bridge $br datapath-type=dummy \
fail-mode=secure \
other-config:datapath-id=$dpid \
other-config:hwaddr=$mac \
protocols="[OpenFlow10,OpenFlow11,OpenFlow12,\
OpenFlow13,OpenFlow14,OpenFlow15,\
OpenFlow16]" \
-- "$@"
}
cleanup() {
kill -PIPE $(jobs -rp) 2>/dev/null
kill $(cat "$tmpdir"/*.pid 2>/dev/null) 2>/dev/null
#rm -rf "$tmpdir/"
}
trap cleanup EXIT
tmpdir=$(mktemp -d)
ovs_setenv "$tmpdir"
cat > groups.txt <<-EOF
group_id=1233,type=select,selection_method=hash,bucket=output:10,bucket=output:11
group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=output:10,bucket=output:11
group_id=1235,type=all,bucket=actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
EOF
ovsdb/ovsdb-tool create "$tmpdir/conf.db" vswitchd/vswitch.ovsschema
ovsdb/ovsdb-server --detach --no-chdir --pidfile -v --log-file --remote="punix:$OVS_RUNDIR/db.sock" 2>/dev/null
utilities/ovs-vsctl --no-wait init 2>/dev/null
nice -n 20 vswitchd/ovs-vswitchd --enable-dummy --disable-system --detach --no-chdir --pidfile --log-file -vvconn -vofproto_dpif -vunixctl 2>/dev/null
add_of_br 0
for ((i=0; i<$(nproc --all); i++)); do yes >/dev/null 2>&1 & done
while :; do
utilities/ovs-ofctl -O $OF_VERSION -vwarn add-groups br0 groups.txt
utilities/ovs-ofctl -O $OF_VERSION -vwarn del-groups br0
if utilities/ovs-ofctl -O $OF_VERSION -vwarn dump-groups br0 | grep group_id=1234; then
sleep 1
utilities/ovs-ofctl -O $OF_VERSION -vwarn dump-groups br0
exit 1
fi
done
2017-04-19T16:20:20.134Z|00001|vlog|INFO|opened log file /tmp/tmp.beGYIIBZIi/ovs-vswitchd.log
2017-04-19T16:20:20.135Z|00002|ovs_numa|INFO|Discovered 8 CPU cores on NUMA node 0
2017-04-19T16:20:20.135Z|00003|ovs_numa|INFO|Discovered 1 NUMA nodes and 8 CPU cores
2017-04-19T16:20:20.135Z|00004|reconnect|INFO|unix:/tmp/tmp.beGYIIBZIi/db.sock: connecting...
2017-04-19T16:20:20.135Z|00005|reconnect|INFO|unix:/tmp/tmp.beGYIIBZIi/db.sock: connected
2017-04-19T16:20:20.138Z|00006|bridge|INFO|ovs-vswitchd (Open vSwitch) 2.7.90
2017-04-19T16:20:20.144Z|00007|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports recirculation
2017-04-19T16:20:20.144Z|00008|ofproto_dpif|INFO|dummy@ovs-dummy: VLAN header stack length probed as 1
2017-04-19T16:20:20.144Z|00009|ofproto_dpif|INFO|dummy@ovs-dummy: MPLS label stack length probed as 3
2017-04-19T16:20:20.144Z|00010|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports truncate action
2017-04-19T16:20:20.144Z|00011|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports unique flow ids
2017-04-19T16:20:20.144Z|00012|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports clone action
2017-04-19T16:20:20.144Z|00013|ofproto_dpif|INFO|dummy@ovs-dummy: Max sample nesting level probed as 10
2017-04-19T16:20:20.144Z|00014|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_state
2017-04-19T16:20:20.144Z|00015|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_zone
2017-04-19T16:20:20.144Z|00016|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_mark
2017-04-19T16:20:20.144Z|00017|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_label
2017-04-19T16:20:20.144Z|00018|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath does not support ct_state_nat
2017-04-19T16:20:20.144Z|00019|ofproto_dpif|INFO|dummy@ovs-dummy: Datapath supports ct_orig_tuple
2017-04-19T16:20:20.145Z|00020|bridge|INFO|bridge br0: added interface br0 on port 65534
2017-04-19T16:20:20.145Z|00021|bridge|INFO|bridge br0: using datapath ID fedcba9876543210
2017-04-19T16:20:20.145Z|00022|connmgr|INFO|br0: added service controller "punix:/tmp/tmp.beGYIIBZIi/br0.mgmt"
2017-04-19T16:20:20.209Z|00023|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.209Z|00024|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.209Z|00025|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.222Z|00026|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.222Z|00027|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.248Z|00028|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.248Z|00029|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.248Z|00030|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.248Z|00031|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.248Z|00032|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.248Z|00033|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.261Z|00034|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.284Z|00035|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.289Z|00036|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.289Z|00037|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.294Z|00038|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.294Z|00039|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.294Z|00040|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.314Z|00041|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x3):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.314Z|00042|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.314Z|00043|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.314Z|00044|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.324Z|00045|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.337Z|00046|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x4):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.345Z|00047|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.345Z|00048|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.345Z|00049|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.352Z|00050|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.352Z|00051|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.353Z|00052|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.354Z|00053|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.357Z|00054|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.363Z|00055|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.363Z|00056|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.366Z|00057|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.387Z|00058|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x5):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.394Z|00059|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.394Z|00060|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.397Z|00061|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.397Z|00062|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.400Z|00063|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.422Z|00064|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x6):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.422Z|00065|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.427Z|00066|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.427Z|00067|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.429Z|00068|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.443Z|00069|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x7):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.447Z|00070|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.450Z|00071|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.457Z|00072|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.463Z|00073|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.463Z|00074|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.467Z|00075|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.467Z|00076|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.470Z|00077|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.477Z|00078|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.477Z|00079|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.477Z|00080|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.499Z|00081|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x8):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.500Z|00082|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.500Z|00083|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.507Z|00084|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.513Z|00085|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.513Z|00086|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.551Z|00087|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x9):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.551Z|00088|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.551Z|00089|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.551Z|00090|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.551Z|00091|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.577Z|00092|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xa):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.577Z|00093|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.577Z|00094|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.577Z|00095|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.577Z|00096|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.577Z|00097|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.577Z|00098|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.577Z|00099|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.577Z|00100|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.577Z|00101|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.577Z|00102|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.577Z|00103|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.600Z|00104|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xb):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.600Z|00105|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.600Z|00106|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.600Z|00107|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.600Z|00108|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.600Z|00109|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.636Z|00110|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xc):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.636Z|00111|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.636Z|00112|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.636Z|00113|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.636Z|00114|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.655Z|00115|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xd):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.655Z|00116|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.655Z|00117|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.660Z|00118|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.660Z|00119|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.660Z|00120|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.680Z|00121|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.680Z|00122|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.680Z|00123|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.680Z|00124|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.680Z|00125|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.681Z|00126|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.699Z|00127|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xe):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.699Z|00128|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.699Z|00129|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.700Z|00130|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.700Z|00131|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.713Z|00132|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.713Z|00133|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0xf):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.713Z|00134|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.713Z|00135|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.726Z|00136|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.726Z|00137|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.755Z|00138|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x10):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.755Z|00139|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.757Z|00140|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.765Z|00141|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.765Z|00142|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.765Z|00143|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.772Z|00144|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.772Z|00145|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.772Z|00146|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.777Z|00147|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.779Z|00148|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.786Z|00149|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.813Z|00150|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x11):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.814Z|00151|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.814Z|00152|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.817Z|00153|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.820Z|00154|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.821Z|00155|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.854Z|00156|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x12):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.854Z|00157|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.854Z|00158|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.863Z|00159|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.864Z|00160|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.877Z|00161|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x13):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.884Z|00162|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.884Z|00163|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.885Z|00164|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.887Z|00165|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.891Z|00166|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.897Z|00167|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.897Z|00168|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:20.897Z|00169|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:20.904Z|00170|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.905Z|00171|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:20.905Z|00172|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:20.926Z|00173|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x14):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.927Z|00174|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.932Z|00175|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.933Z|00176|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:20.937Z|00177|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.937Z|00178|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:20.961Z|00179|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x15):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.961Z|00180|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.967Z|00181|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.967Z|00182|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:20.967Z|00183|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:20.982Z|00184|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x16):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:20.983Z|00185|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:20.987Z|00186|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:20.987Z|00187|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:20.999Z|00188|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:20.999Z|00189|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.021Z|00190|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.021Z|00191|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.021Z|00192|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.026Z|00193|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.026Z|00194|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.026Z|00195|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.050Z|00196|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x17):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.050Z|00197|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.050Z|00198|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.050Z|00199|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.050Z|00200|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.050Z|00201|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.063Z|00202|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x18):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.063Z|00203|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.063Z|00204|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.063Z|00205|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.078Z|00206|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.097Z|00207|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x19):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.097Z|00208|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.097Z|00209|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.097Z|00210|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.097Z|00211|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.128Z|00212|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.128Z|00213|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.128Z|00214|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.128Z|00215|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.128Z|00216|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.128Z|00217|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.128Z|00218|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.154Z|00219|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1a):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.154Z|00220|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.154Z|00221|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.154Z|00222|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.154Z|00223|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.154Z|00224|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.196Z|00225|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1b):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.196Z|00226|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.196Z|00227|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.196Z|00228|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.196Z|00229|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.222Z|00230|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1c):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.222Z|00231|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.222Z|00232|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.222Z|00233|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.222Z|00234|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.240Z|00235|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.240Z|00236|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.240Z|00237|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.240Z|00238|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.240Z|00239|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.240Z|00240|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.240Z|00241|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.258Z|00242|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1d):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.258Z|00243|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.258Z|00244|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.258Z|00245|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.258Z|00246|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.262Z|00247|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.282Z|00248|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1e):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.282Z|00249|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.282Z|00250|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.282Z|00251|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.293Z|00252|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.302Z|00253|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x1f):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.302Z|00254|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.302Z|00255|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.302Z|00256|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.302Z|00257|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.320Z|00258|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.320Z|00259|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.320Z|00260|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.320Z|00261|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.320Z|00262|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.320Z|00263|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.320Z|00264|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.344Z|00265|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x20):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.344Z|00266|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.344Z|00267|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.348Z|00268|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.348Z|00269|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.357Z|00270|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.375Z|00271|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x21):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.375Z|00272|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.375Z|00273|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.382Z|00274|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.382Z|00275|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.397Z|00276|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x22):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.397Z|00277|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.397Z|00278|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.417Z|00279|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.417Z|00280|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.417Z|00281|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.417Z|00282|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.417Z|00283|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.422Z|00284|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.422Z|00285|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.422Z|00286|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.431Z|00287|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.455Z|00288|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x23):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.455Z|00289|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.455Z|00290|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.455Z|00291|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.455Z|00292|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.455Z|00293|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.473Z|00294|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x24):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.473Z|00295|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.473Z|00296|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.473Z|00297|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.477Z|00298|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.501Z|00299|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x25):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.501Z|00300|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.501Z|00301|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.501Z|00302|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.501Z|00303|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.502Z|00304|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.502Z|00305|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.502Z|00306|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.518Z|00307|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.518Z|00308|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.518Z|00309|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.518Z|00310|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.532Z|00311|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x26):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.532Z|00312|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.532Z|00313|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.542Z|00314|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.543Z|00315|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.543Z|00316|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.567Z|00317|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x27):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.567Z|00318|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.567Z|00319|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.574Z|00320|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.579Z|00321|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.601Z|00322|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x28):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.601Z|00323|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.601Z|00324|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.601Z|00325|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.601Z|00326|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.601Z|00327|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.601Z|00328|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.601Z|00329|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.601Z|00330|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.601Z|00331|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.601Z|00332|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.601Z|00333|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.644Z|00334|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x29):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.644Z|00335|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.644Z|00336|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.644Z|00337|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.644Z|00338|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.644Z|00339|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.659Z|00340|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2a):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.659Z|00341|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.659Z|00342|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.673Z|00343|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.673Z|00344|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.696Z|00345|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2b):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.696Z|00346|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.696Z|00347|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.697Z|00348|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.697Z|00349|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.719Z|00350|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.719Z|00351|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.719Z|00352|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.719Z|00353|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.719Z|00354|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.719Z|00355|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.719Z|00356|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.747Z|00357|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2c):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.747Z|00358|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.747Z|00359|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.747Z|00360|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.747Z|00361|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.747Z|00362|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.777Z|00363|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2d):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.777Z|00364|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.777Z|00365|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.777Z|00366|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.777Z|00367|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.796Z|00368|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2e):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.796Z|00369|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.796Z|00370|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.796Z|00371|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.796Z|00372|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.796Z|00373|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.796Z|00374|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.796Z|00375|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.800Z|00376|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.800Z|00377|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.800Z|00378|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.814Z|00379|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.829Z|00380|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x2f):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.829Z|00381|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.829Z|00382|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.832Z|00383|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.832Z|00384|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.845Z|00385|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.867Z|00386|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x30):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.868Z|00387|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.868Z|00388|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.868Z|00389|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.869Z|00390|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.895Z|00391|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x31):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.896Z|00392|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.896Z|00393|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.896Z|00394|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.921Z|00395|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.921Z|00396|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.921Z|00397|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.922Z|00398|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:21.922Z|00399|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:21.922Z|00400|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:21.922Z|00401|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:21.923Z|00402|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:21.939Z|00403|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x32):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.951Z|00404|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.951Z|00405|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.951Z|00406|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:21.952Z|00407|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:21.952Z|00408|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:21.975Z|00409|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x33):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.975Z|00410|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.975Z|00411|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:21.975Z|00412|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:21.976Z|00413|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:21.991Z|00414|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x34):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:21.991Z|00415|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:21.991Z|00416|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.004Z|00417|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.004Z|00418|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.004Z|00419|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.004Z|00420|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.004Z|00421|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:22.004Z|00422|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:22.004Z|00423|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.004Z|00424|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:22.016Z|00425|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:22.016Z|00426|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x35):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.016Z|00427|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.016Z|00428|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.016Z|00429|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:22.016Z|00430|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.029Z|00431|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.064Z|00432|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x36):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.065Z|00433|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.065Z|00434|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.065Z|00435|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:22.065Z|00436|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:22.088Z|00437|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x37):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.088Z|00438|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.088Z|00439|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.088Z|00440|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.088Z|00441|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.088Z|00442|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.088Z|00443|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.088Z|00444|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:22.088Z|00445|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:22.088Z|00446|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.088Z|00447|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:22.113Z|00448|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:22.113Z|00449|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x38):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.114Z|00450|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.114Z|00451|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.114Z|00452|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:22.115Z|00453|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.115Z|00454|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.140Z|00455|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x39):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.140Z|00456|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.140Z|00457|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.153Z|00458|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:22.153Z|00459|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
2017-04-19T16:20:22.176Z|00460|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x3a):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.177Z|00461|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.177Z|00462|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.177Z|00463|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
ADD group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.178Z|00464|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.182Z|00465|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.182Z|00466|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x4):
ADD group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.194Z|00467|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x5):
2017-04-19T16:20:22.194Z|00468|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x5):
2017-04-19T16:20:22.214Z|00469|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x6):
ADD group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:22.214Z|00470|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x7):
2017-04-19T16:20:22.214Z|00471|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x7):
2017-04-19T16:20:22.233Z|00472|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x3b):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.233Z|00473|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.233Z|00474|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.236Z|00475|vconn|DBG|unix: received: OFPT_GROUP_MOD (OF1.5) (xid=0x2):
DEL group_id=4294967292,type=all
2017-04-19T16:20:22.236Z|00476|vconn|DBG|unix: received: OFPT_BARRIER_REQUEST (OF1.5) (xid=0x3):
2017-04-19T16:20:22.251Z|00477|vconn|DBG|unix: sent (Success): OFPT_BARRIER_REPLY (OF1.5) (xid=0x3):
2017-04-19T16:20:22.251Z|00478|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x3c):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:22.251Z|00479|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:22.251Z|00480|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:22.251Z|00481|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:22.262Z|00482|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
group_id=1233,type=select,selection_method=hash,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
group_id=1234,type=select,selection_method=hash,fields(eth_dst,ip_dst,tcp_dst),bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
group_id=1235,type=all,bucket=bucket_id:2,actions=output:12,bucket=bucket_id:0,actions=output:10,bucket=bucket_id:1,actions=output:11
2017-04-19T16:20:23.289Z|00483|vconn|DBG|unix: sent (Success): OFPT_HELLO (OF1.6) (xid=0x3d):
version bitmap: 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07
2017-04-19T16:20:23.289Z|00484|vconn|DBG|unix: received: OFPT_HELLO (OF1.5) (xid=0x1):
version bitmap: 0x06
2017-04-19T16:20:23.289Z|00485|vconn|DBG|unix: negotiated OpenFlow version 0x06 (we support version 0x07 and earlier, peer supports version 0x06)
2017-04-19T16:20:23.289Z|00486|vconn|DBG|unix: received: OFPST_GROUP_DESC request (OF1.5) (xid=0x2): group_id=ALL
2017-04-19T16:20:23.289Z|00487|vconn|DBG|unix: sent (Success): OFPST_GROUP_DESC reply (OF1.5) (xid=0x2):
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment