Include contrib script to debug live migrations.

The example ansible script will command two hosts, while
starting several extra logging artifacts to capture tcpdumps,
pings, fdb tables and openflow rules.

Then, at the end, will download logs from servers and generate
several merged logs which can be found in
contrib/debug-live-migration/logs/mergedlogs*.log

Logs and output are left as an example.
This commit is contained in:
Miguel Angel Ajo 2015-10-29 16:22:50 +01:00
parent 94c07e3606
commit 2a27eaba64
47 changed files with 58483 additions and 0 deletions

View File

@ -0,0 +1,8 @@
[defaults]
pipelining = True
gathering = smart
fact_caching = jsonfile
fact_caching_connection = tmp/facts_cache
hostfile = inventory
remote_user = root
host_key_checking = False

View File

@ -0,0 +1,196 @@
---
- name: Configure debug settings.
hosts: all
tasks:
- name: Set nova and neutron on debug.
command: openstack-config --set {{ item }} DEFAULT debug True
with_items:
- /etc/neutron/neutron.conf
- /etc/nova/nova.conf
- name: Copy log tool.
copy: src=scripts/ansiblelog.sh dest=/tmp/ansiblelog.sh mode=755
- name: Restart controller (with networker) services.
hosts: controllers
tasks:
- name: Clear logs.
command: rm -f /var/log/nova/nova-api.log /var/log/neutron/server.log /var/log/neutron/l3-agent.log /var/log/ansible-debug.log
- name: Restart controller services
service: name={{ item }} state=restarted
with_items:
- neutron-server
- neutron-l3-agent
- openstack-nova-api
- name: Restart compute services.
hosts: computes
tasks:
- name: Clear logs.
command: rm -f /var/log/nova/nova-compute.log /var/log/neutron/openvswitch-agent.log
- name: Restart neutron openvswitch agent and nova compute
service: name={{ item }} state=restarted
with_items:
- neutron-openvswitch-agent
- openstack-nova-compute
- name: Start pingers and arp loggers
hosts: all
tasks:
- name: Kill old dumpers and loggers.
shell: |
killall pinger.sh
killall arpdumper.sh
killall tapdumper.sh
killall fdbshower.sh
killall tcpdump
killall ping
exit 0
- name: Copy scripts.
copy: src=scripts/{{ item }} dest=/tmp/{{ item }} mode=755
with_items:
- pinger.sh
- arpdumper.sh
- tapdumper.sh
- fdbshower.sh
- name: Start new pingers in openstack log format.
shell: |
rm -f /var/log/neutron/pinger.log
nohup /tmp/pinger.sh {{ floating_ip }} > /var/log/neutron/pinger.log &
- name: Start arpdumper.
shell: |
rm -f /var/log/neutron/arpdumper.log
nohup /tmp/arpdumper.sh > /var/log/neutron/arpdumper.log &
- name: Start tapdumpers.
shell: |
rm -f /var/log/neutron/tapdumper.log
nohup /tmp/tapdumper.sh {{ vm_tap }} > /var/log/neutron/tapdumper.log &
rm -f /var/log/neutron/qvodumper.log
nohup /tmp/tapdumper.sh {{ vm_bridge }} > /var/log/neutron/qvodumper.log &
- name: Start fdb/show loop
shell: |
rm -f /var/log/neutron/fdbshow.log
nohup /tmp/fdbshower.sh > /var/log/neutron/fdbshow.log &
- name: Migrate back and forth
hosts: command-controller
tasks:
- name: Migrate to c29
shell: |
/tmp/ansiblelog.sh starting migration to c29
source /root/keystonerc_admin
nova live-migration {{ vm_id }} {{ migration_host_c29 }}
sleep {{ migration_wait }}
- name: Migrate to c30
shell: |
/tmp/ansiblelog.sh starting migration to c30
source /root/keystonerc_admin
nova live-migration {{ vm_id }} {{ migration_host_c30 }}
sleep {{ migration_wait }}
- name: Fetch logs from hosts
hosts: all
tasks:
- name: create local log dir
local_action: command mkdir -p logs/{{ ansible_hostname }}/var/log/{{ item }}
with_items:
- nova
- neutron
- name: Fetch logs
synchronize: mode=pull src=/var/log/{{ item }}/ dest=logs/{{ ansible_hostname }}/var/log/{{ item }}/ delete=yes
with_items:
- nova
- neutron
- name: Touch extra log
command: touch /var/log/ansible-debug.log
- name: Fetch our extra log
fetch: src=/var/log/ansible-debug.log dest=logs/
- name: Final merge
hosts: command-controller # a dirty trick to get this locally ran once... is there a better way to do this?
tasks:
- name: filter nova lifecycles
local_action: shell
grep "(Lifecycle Event)" logs/hp-ms-01-c29/var/log/nova/nova-compute.log > logs/hp-ms-01-c29/var/log/nova/vmlife.log;
grep "(Lifecycle Event)" logs/hp-ms-01-c30/var/log/nova/nova-compute.log > logs/hp-ms-01-c30/var/log/nova/vmlife.log
- name: merge logs
local_action: shell
oslogmerger logs/hp-ms-01-c29/var/log/neutron/server.log:NEUTRONSRV \
logs/hp-ms-01-c29/var/log/neutron/openvswitch-agent.log:OVS29 \
logs/hp-ms-01-c29/var/log/neutron/pinger.log:PING29 \
logs/hp-ms-01-c29/var/log/neutron/arpdumper.log:ARP29 \
logs/hp-ms-01-c29/var/log/neutron/tapdumper.log:TAP29 \
logs/hp-ms-01-c29/var/log/neutron/qvodumper.log:QVO29 \
logs/hp-ms-01-c29/var/log/neutron/fdbshow.log:FDB29 \
logs/hp-ms-01-c29/var/log/ansible-debug.log:ANSIBLE29 \
logs/hp-ms-01-c29/var/log/nova/nova-api.log:NOVAAPI \
logs/hp-ms-01-c29/var/log/nova/nova-compute.log:COMPUTE29 \
logs/hp-ms-01-c29/var/log/neutron/l3-agent.log:L3AGENT \
logs/hp-ms-01-c30/var/log/neutron/openvswitch-agent.log:OVS30 \
logs/hp-ms-01-c30/var/log/neutron/pinger.log:PING30 \
logs/hp-ms-01-c30/var/log/neutron/arpdumper.log:ARP30 \
logs/hp-ms-01-c30/var/log/neutron/tapdumper.log:TAP30 \
logs/hp-ms-01-c30/var/log/neutron/qvodumper.log:QVO30 \
logs/hp-ms-01-c30/var/log/neutron/fdbshow.log:FDB30 \
logs/hp-ms-01-c30/var/log/nova/nova-compute.log:COMPUTE30 \
logs/hp-ms-01-c30/var/log/ansible-debug.log:ANSIBLE30 >logs/mergedlogs.log
- name: merge logs low level only (no controllers)
local_action: shell
oslogmerger logs/hp-ms-01-c29/var/log/neutron/openvswitch-agent.log:OVS29 \
logs/hp-ms-01-c29/var/log/neutron/pinger.log:PING29 \
logs/hp-ms-01-c29/var/log/neutron/arpdumper.log:ARP29 \
logs/hp-ms-01-c29/var/log/neutron/tapdumper.log:TAP29 \
logs/hp-ms-01-c29/var/log/neutron/qvodumper.log:QVO29 \
logs/hp-ms-01-c29/var/log/neutron/fdbshow.log:FDB29 \
logs/hp-ms-01-c29/var/log/ansible-debug.log:ANSIBLE29 \
logs/hp-ms-01-c29/var/log/nova/nova-compute.log:COMPUTE29 \
logs/hp-ms-01-c29/var/log/neutron/l3-agent.log:L3AGENT \
logs/hp-ms-01-c30/var/log/neutron/openvswitch-agent.log:OVS30 \
logs/hp-ms-01-c30/var/log/neutron/pinger.log:PING30 \
logs/hp-ms-01-c30/var/log/neutron/arpdumper.log:ARP30 \
logs/hp-ms-01-c30/var/log/neutron/tapdumper.log:TAP30 \
logs/hp-ms-01-c30/var/log/neutron/qvodumper.log:QVO30 \
logs/hp-ms-01-c30/var/log/neutron/fdbshow.log:FDB30 \
logs/hp-ms-01-c30/var/log/nova/nova-compute.log:COMPUTE30 \
logs/hp-ms-01-c30/var/log/ansible-debug.log:ANSIBLE30 >logs/mergedlogs-compute.log
- name: merge packets and ovs
local_action: shell
oslogmerger logs/hp-ms-01-c29/var/log/neutron/openvswitch-agent.log:OVS29 \
logs/hp-ms-01-c29/var/log/neutron/pinger.log:PING29 \
logs/hp-ms-01-c29/var/log/neutron/arpdumper.log:ARP29 \
logs/hp-ms-01-c29/var/log/neutron/tapdumper.log:TAP29 \
logs/hp-ms-01-c29/var/log/neutron/qvodumper.log:QVO29 \
logs/hp-ms-01-c29/var/log/neutron/fdbshow.log:FDB29 \
logs/hp-ms-01-c29/var/log/nova/vmlife.log:VMLIFE29 \
logs/hp-ms-01-c30/var/log/neutron/openvswitch-agent.log:OVS30 \
logs/hp-ms-01-c30/var/log/neutron/pinger.log:PING30 \
logs/hp-ms-01-c30/var/log/neutron/arpdumper.log:ARP30 \
logs/hp-ms-01-c30/var/log/neutron/tapdumper.log:TAP30 \
logs/hp-ms-01-c30/var/log/neutron/qvodumper.log:QVO30 \
logs/hp-ms-01-c30/var/log/neutron/fdbshow.log:FDB30 \
logs/hp-ms-01-c30/var/log/nova/vmlife.log:VMLIFE30 >logs/mergedlogs-packets-ovs.log
- name: merge packets
local_action: shell
oslogmerger logs/hp-ms-01-c29/var/log/neutron/pinger.log:PING29 \
logs/hp-ms-01-c29/var/log/neutron/arpdumper.log:ARP29 \
logs/hp-ms-01-c29/var/log/neutron/tapdumper.log:TAP29 \
logs/hp-ms-01-c29/var/log/neutron/qvodumper.log:QVO29 \
logs/hp-ms-01-c29/var/log/neutron/fdbshow.log:FDB29 \
logs/hp-ms-01-c29/var/log/nova/vmlife.log:VMLIFE29 \
logs/hp-ms-01-c30/var/log/neutron/pinger.log:PING30 \
logs/hp-ms-01-c30/var/log/neutron/arpdumper.log:ARP30 \
logs/hp-ms-01-c30/var/log/neutron/tapdumper.log:TAP30 \
logs/hp-ms-01-c30/var/log/neutron/qvodumper.log:QVO30 \
logs/hp-ms-01-c30/var/log/neutron/fdbshow.log:FDB30 \
logs/hp-ms-01-c30/var/log/nova/vmlife.log:VMLIFE30 >logs/mergedlogs-packets.log

View File

@ -0,0 +1,21 @@
[command-controller]
hp-ms-01-c29 ansible_ssh_host=10.12.27.29
[controllers]
hp-ms-01-c29 ansible_ssh_host=10.12.27.29
[computes]
hp-ms-01-c29 ansible_ssh_host=10.12.27.29
hp-ms-01-c30 ansible_ssh_host=10.12.27.30
[command-controller:vars]
vm_id = a18a5824-4215-4e24-bcfc-cb9f89f6bcbd
migration_host_c29 = hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com
migration_host_c30 = hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com
migration_wait = 60
[computes:vars]
floating_ip = 192.168.233.100
vm_tap=tap2e6d0f35-cb
vm_bridge=qvo2e6d0f35-cb

View File

@ -0,0 +1,2 @@
2015-10-29 10:52:36.051 hp-ms-01-c29 DEBUG starting migration to c29
2015-10-29 10:53:58.296 hp-ms-01-c29 DEBUG starting migration to c30

View File

@ -0,0 +1,4 @@
2015-10-29 10:52:24.719 tcpdump DEBUG tcpdump: WARNING: br-int: no IPv4 address assigned
2015-10-29 10:52:24.748 tcpdump DEBUG tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
2015-10-29 10:52:24.753 tcpdump DEBUG listening on br-int, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:53:45.082 tcpdump DEBUG 10:53:45.076033 fa:16:3e:c5:24:11 > Broadcast, ethertype 802.1Q (0x8100), length 46: vlan 1, p 0, ethertype ARP, Request who-has 192.168.200.6 tell 192.168.200.1, length 28

View File

@ -0,0 +1,150 @@
2015-10-20 09:23:32.398 5114 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:23:32.403 5114 INFO neutron.common.config [-] /usr/bin/neutron-dhcp-agent version 2014.2.3-19.el7ost
2015-10-20 09:23:32.574 5114 INFO oslo.messaging._drivers.impl_rabbit [req-cfe86490-7de8-44de-82bd-984feb22e67a ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:32.671 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:32.811 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:32.815 5114 INFO oslo.messaging._drivers.impl_rabbit [req-cfe86490-7de8-44de-82bd-984feb22e67a ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:32.856 5114 INFO oslo.messaging._drivers.impl_rabbit [req-cfe86490-7de8-44de-82bd-984feb22e67a ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:32.971 5114 INFO neutron.agent.dhcp_agent [-] DHCP agent started
2015-10-20 09:23:32.987 5114 INFO oslo.messaging._drivers.impl_rabbit [req-cfe86490-7de8-44de-82bd-984feb22e67a ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:24:33.011 5114 ERROR neutron.agent.dhcp_agent [req-cfe86490-7de8-44de-82bd-984feb22e67a None] Failed reporting state!
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 2a2a9edca7544ff492417a1b9143f966.
2015-10-20 09:24:33.011 5114 TRACE neutron.agent.dhcp_agent
2015-10-20 09:24:33.024 5114 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.454294 sec
2015-10-20 09:24:33.111 5114 INFO neutron.agent.dhcp_agent [req-fd77bb0e-812c-4b7d-9f9a-277bed7e7e49 None] Synchronizing state
2015-10-20 09:24:33.409 5114 INFO neutron.agent.dhcp_agent [req-fd77bb0e-812c-4b7d-9f9a-277bed7e7e49 None] Synchronizing state complete
2015-10-20 10:17:03.114 5114 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:03.114 5114 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:03.123 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:04.125 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:04.186 5114 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 1 seconds.
2015-10-20 10:17:05.188 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:06.198 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:06.304 5114 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 3 seconds.
2015-10-20 10:17:09.307 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:10.309 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:10.345 5114 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 5 seconds.
2015-10-20 10:17:15.350 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:15.861 5114 ERROR oslo.messaging._drivers.impl_rabbit [req-01c48969-2a67-4d1d-9a0c-ad215d2f58a5 ] Failed to publish message to topic 'q-plugin': Socket closed
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 240, in _wait_method
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit self.method_reader.read_method()
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit IOError: Socket closed
2015-10-20 10:17:15.861 5114 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:15.870 5114 INFO oslo.messaging._drivers.impl_rabbit [req-01c48969-2a67-4d1d-9a0c-ad215d2f58a5 ] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:16.352 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:16.439 5114 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:16.897 5114 INFO oslo.messaging._drivers.impl_rabbit [req-01c48969-2a67-4d1d-9a0c-ad215d2f58a5 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:17.000 5114 INFO oslo.messaging._drivers.impl_rabbit [req-01c48969-2a67-4d1d-9a0c-ad215d2f58a5 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:20.541 5114 INFO neutron.openstack.common.service [req-b415246f-7a97-4a77-b0fb-92608fb3eb8e None] Caught SIGTERM, exiting
2015-10-20 12:41:30.031 4436 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:41:30.079 4436 INFO neutron.common.config [-] /usr/bin/neutron-dhcp-agent version 2014.2.3-19.el7ost
2015-10-20 12:41:30.395 4436 INFO oslo.messaging._drivers.impl_rabbit [req-3c1c9ec1-9e07-4287-ac23-7a1b61fdd0be ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:30.579 4436 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:30.794 4436 INFO oslo.messaging._drivers.impl_rabbit [req-3c1c9ec1-9e07-4287-ac23-7a1b61fdd0be ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:30.798 4436 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:30.849 4436 INFO oslo.messaging._drivers.impl_rabbit [req-3c1c9ec1-9e07-4287-ac23-7a1b61fdd0be ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:31.045 4436 INFO oslo.messaging._drivers.impl_rabbit [req-3c1c9ec1-9e07-4287-ac23-7a1b61fdd0be ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:31.124 4436 INFO neutron.agent.dhcp_agent [-] DHCP agent started
2015-10-20 12:42:31.122 4436 ERROR neutron.agent.dhcp_agent [req-3c1c9ec1-9e07-4287-ac23-7a1b61fdd0be None] Failed reporting state!
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 78a182793a8242fb9f8e17ec7bd9ca3f.
2015-10-20 12:42:31.122 4436 TRACE neutron.agent.dhcp_agent
2015-10-20 12:42:31.146 4436 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.755455 sec
2015-10-20 12:42:31.334 4436 INFO neutron.agent.dhcp_agent [req-9820014f-23b0-43cf-acd0-5384beec0cb7 None] Synchronizing state
2015-10-20 12:42:31.851 4436 INFO neutron.agent.dhcp_agent [req-9820014f-23b0-43cf-acd0-5384beec0cb7 None] Synchronizing state complete

View File

@ -0,0 +1,769 @@
2015-10-29 10:52:32.004 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:32.009 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:32.013 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:32.019 ovs-fdb DEBUG cookie=0x0, duration=11.280s, table=20, n_packets=45, n_bytes=4298, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:33.046 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:33.052 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:33.061 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:33.075 ovs-fdb DEBUG cookie=0x0, duration=12.337s, table=20, n_packets=49, n_bytes=4690, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:34.089 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:34.094 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:34.098 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:34.105 ovs-fdb DEBUG cookie=0x0, duration=13.366s, table=20, n_packets=55, n_bytes=5278, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:35.120 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:35.124 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:35.128 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:35.135 ovs-fdb DEBUG cookie=0x0, duration=14.396s, table=20, n_packets=59, n_bytes=5670, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:36.161 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:36.166 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:36.171 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:36.177 ovs-fdb DEBUG cookie=0x0, duration=15.424s, table=20, n_packets=63, n_bytes=6062, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:37.184 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:37.191 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:37.197 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:37.207 ovs-fdb DEBUG cookie=0x0, duration=16.468s, table=20, n_packets=67, n_bytes=6454, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:38.230 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:38.239 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:38.251 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:38.256 ovs-fdb DEBUG cookie=0x0, duration=17.507s, table=20, n_packets=71, n_bytes=6846, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:39.270 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:39.275 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:39.281 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:39.286 ovs-fdb DEBUG cookie=0x0, duration=18.541s, table=20, n_packets=75, n_bytes=7238, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:40.295 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:40.299 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:40.304 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:40.314 ovs-fdb DEBUG cookie=0x0, duration=19.575s, table=20, n_packets=79, n_bytes=7630, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:41.332 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:41.339 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:41.345 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:41.351 ovs-fdb DEBUG cookie=0x0, duration=20.609s, table=20, n_packets=83, n_bytes=8022, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:42.364 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:42.374 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:42.379 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:42.386 ovs-fdb DEBUG cookie=0x0, duration=21.644s, table=20, n_packets=87, n_bytes=8414, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:43.403 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:43.408 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:43.413 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:43.420 ovs-fdb DEBUG cookie=0x0, duration=22.681s, table=20, n_packets=91, n_bytes=8806, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:44.436 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:44.448 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:44.454 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:44.459 ovs-fdb DEBUG cookie=0x0, duration=23.715s, table=20, n_packets=95, n_bytes=9198, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:45.470 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:45.475 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:45.482 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:45.490 ovs-fdb DEBUG cookie=0x0, duration=24.748s, table=20, n_packets=99, n_bytes=9590, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:46.504 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:46.518 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:46.523 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:46.529 ovs-fdb DEBUG cookie=0x0, duration=25.785s, table=20, n_packets=103, n_bytes=9982, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:47.558 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:47.573 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:47.583 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:47.602 ovs-fdb DEBUG cookie=0x0, duration=26.852s, table=20, n_packets=107, n_bytes=10374, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:48.628 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:48.633 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:48.638 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:48.665 ovs-fdb DEBUG cookie=0x0, duration=27.917s, table=20, n_packets=113, n_bytes=10962, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:49.683 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:49.691 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:49.702 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:49.714 ovs-fdb DEBUG cookie=0x0, duration=28.965s, table=20, n_packets=117, n_bytes=11354, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:50.732 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:50.741 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:50.746 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:50.765 ovs-fdb DEBUG cookie=0x0, duration=30.022s, table=20, n_packets=121, n_bytes=11746, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:51.786 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:51.799 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:51.805 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:51.809 ovs-fdb DEBUG cookie=0x0, duration=31.064s, table=20, n_packets=125, n_bytes=12138, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:52.823 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:52.837 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:52.843 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:52.862 ovs-fdb DEBUG cookie=0x0, duration=32.117s, table=20, n_packets=129, n_bytes=12530, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:53.876 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:53.881 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:53.889 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:53.895 ovs-fdb DEBUG cookie=0x0, duration=33.154s, table=20, n_packets=133, n_bytes=12922, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:54.912 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:54.926 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:54.934 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:54.941 ovs-fdb DEBUG cookie=0x0, duration=34.193s, table=20, n_packets=137, n_bytes=13314, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:55.951 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:55.970 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:55.977 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:55.983 ovs-fdb DEBUG cookie=0x0, duration=35.228s, table=20, n_packets=142, n_bytes=13748, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:56.997 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:57.003 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:57.016 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:57.022 ovs-fdb DEBUG cookie=0x0, duration=36.274s, table=20, n_packets=146, n_bytes=14140, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:58.059 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:58.064 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:58.070 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:58.081 ovs-fdb DEBUG cookie=0x0, duration=37.340s, table=20, n_packets=150, n_bytes=14532, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:59.122 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:59.138 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:59.148 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:59.167 ovs-fdb DEBUG cookie=0x0, duration=38.399s, table=20, n_packets=154, n_bytes=14924, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:00.184 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:00.191 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:00.197 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:00.201 ovs-fdb DEBUG cookie=0x0, duration=39.456s, table=20, n_packets=160, n_bytes=15512, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:01.235 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:01.239 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:01.243 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:01.248 ovs-fdb DEBUG cookie=0x0, duration=40.492s, table=20, n_packets=164, n_bytes=15904, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:02.277 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:02.293 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:02.304 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:02.322 ovs-fdb DEBUG cookie=0x0, duration=41.567s, table=20, n_packets=168, n_bytes=16296, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:03.359 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:03.373 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:03.382 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:03.397 ovs-fdb DEBUG cookie=0x0, duration=42.639s, table=20, n_packets=172, n_bytes=16688, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:04.431 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:04.452 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:04.458 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:04.464 ovs-fdb DEBUG cookie=0x0, duration=43.704s, table=20, n_packets=176, n_bytes=17080, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:05.465 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:05.474 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:05.485 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:05.497 ovs-fdb DEBUG cookie=0x0, duration=44.745s, table=20, n_packets=180, n_bytes=17472, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:06.536 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:06.546 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:06.552 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:06.567 ovs-fdb DEBUG cookie=0x0, duration=45.821s, table=20, n_packets=185, n_bytes=17906, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:07.639 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:07.656 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 1
2015-10-29 10:53:07.665 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:07.670 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:07.678 ovs-fdb DEBUG cookie=0x0, duration=46.909s, table=20, n_packets=189, n_bytes=18298, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:08.681 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:08.688 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 2
2015-10-29 10:53:08.703 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:08.715 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:08.723 ovs-fdb DEBUG cookie=0x0, duration=47.972s, table=20, n_packets=193, n_bytes=18690, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:09.746 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:09.757 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 3
2015-10-29 10:53:09.776 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:09.786 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:09.793 ovs-fdb DEBUG cookie=0x0, duration=49.030s, table=20, n_packets=197, n_bytes=19082, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:10.838 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:10.852 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 1
2015-10-29 10:53:10.864 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:10.873 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:10.888 ovs-fdb DEBUG cookie=0x0, duration=50.141s, table=20, n_packets=203, n_bytes=19670, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:11.910 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:11.924 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 2
2015-10-29 10:53:11.938 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:11.946 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:11.952 ovs-fdb DEBUG cookie=0x0, duration=51.191s, table=20, n_packets=207, n_bytes=20062, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:12.959 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:12.969 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 3
2015-10-29 10:53:12.975 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 0
2015-10-29 10:53:12.982 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:12.994 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:13.003 ovs-fdb DEBUG cookie=0x0, duration=52.233s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:14.005 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:14.009 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:14.013 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 0
2015-10-29 10:53:14.019 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 0
2015-10-29 10:53:14.028 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:14.034 ovs-fdb DEBUG cookie=0x0, duration=53.288s, table=20, n_packets=215, n_bytes=20846, hard_timeout=300, idle_age=0, hard_age=1, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:15.050 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:15.066 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 2
2015-10-29 10:53:15.072 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 1
2015-10-29 10:53:15.079 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 1
2015-10-29 10:53:15.087 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:15.093 ovs-fdb DEBUG cookie=0x0, duration=54.326s, table=20, n_packets=219, n_bytes=21238, hard_timeout=300, idle_age=0, hard_age=2, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:16.106 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:16.119 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 3
2015-10-29 10:53:16.125 ovs-fdb DEBUG 62 0 16:41:06:5e:22:39 2
2015-10-29 10:53:16.131 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 2
2015-10-29 10:53:16.137 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:16.144 ovs-fdb DEBUG cookie=0x0, duration=55.386s, table=20, n_packets=223, n_bytes=21630, hard_timeout=300, idle_age=0, hard_age=3, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:17.157 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:17.170 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 4
2015-10-29 10:53:17.178 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:17.182 ovs-fdb DEBUG cookie=0x0, duration=56.438s, table=20, n_packets=227, n_bytes=22022, hard_timeout=300, idle_age=0, hard_age=4, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:18.222 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:18.234 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 5
2015-10-29 10:53:18.243 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:18.252 ovs-fdb DEBUG cookie=0x0, duration=57.499s, table=20, n_packets=233, n_bytes=22610, hard_timeout=300, idle_age=0, hard_age=5, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:19.274 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:19.282 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 6
2015-10-29 10:53:19.290 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:19.308 ovs-fdb DEBUG cookie=0x0, duration=58.556s, table=20, n_packets=237, n_bytes=23002, hard_timeout=300, idle_age=0, hard_age=6, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:20.327 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:20.341 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 7
2015-10-29 10:53:20.352 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:20.368 ovs-fdb DEBUG cookie=0x0, duration=59.616s, table=20, n_packets=241, n_bytes=23394, hard_timeout=300, idle_age=0, hard_age=7, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:21.392 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:21.414 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 8
2015-10-29 10:53:21.419 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:21.425 ovs-fdb DEBUG cookie=0x0, duration=60.668s, table=20, n_packets=245, n_bytes=23786, hard_timeout=300, idle_age=0, hard_age=8, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:22.455 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:22.461 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 10
2015-10-29 10:53:22.473 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:22.485 ovs-fdb DEBUG cookie=0x0, duration=61.734s, table=20, n_packets=249, n_bytes=24178, hard_timeout=300, idle_age=0, hard_age=9, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:23.503 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:23.508 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 11
2015-10-29 10:53:23.523 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:23.531 ovs-fdb DEBUG cookie=0x0, duration=62.789s, table=20, n_packets=253, n_bytes=24570, hard_timeout=300, idle_age=0, hard_age=10, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:24.576 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:24.593 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 12
2015-10-29 10:53:24.605 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:24.618 ovs-fdb DEBUG cookie=0x0, duration=63.872s, table=20, n_packets=257, n_bytes=24962, hard_timeout=300, idle_age=0, hard_age=11, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:25.635 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:25.645 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 13
2015-10-29 10:53:25.652 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:25.656 ovs-fdb DEBUG cookie=0x0, duration=64.909s, table=20, n_packets=261, n_bytes=25354, hard_timeout=300, idle_age=0, hard_age=12, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:26.674 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:26.684 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 14
2015-10-29 10:53:26.691 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:26.702 ovs-fdb DEBUG cookie=0x0, duration=65.961s, table=20, n_packets=265, n_bytes=25746, hard_timeout=300, idle_age=0, hard_age=13, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:27.717 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:27.722 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 15
2015-10-29 10:53:27.726 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:27.740 ovs-fdb DEBUG cookie=0x0, duration=67s, table=20, n_packets=271, n_bytes=26334, hard_timeout=300, idle_age=0, hard_age=14, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:28.761 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:28.766 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 16
2015-10-29 10:53:28.772 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:28.787 ovs-fdb DEBUG cookie=0x0, duration=68.047s, table=20, n_packets=275, n_bytes=26726, hard_timeout=300, idle_age=0, hard_age=15, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:29.817 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:29.824 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 17
2015-10-29 10:53:29.829 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:29.849 ovs-fdb DEBUG cookie=0x0, duration=69.094s, table=20, n_packets=279, n_bytes=27118, hard_timeout=300, idle_age=0, hard_age=16, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:30.858 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:30.867 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 18
2015-10-29 10:53:30.874 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:30.880 ovs-fdb DEBUG cookie=0x0, duration=70.137s, table=20, n_packets=283, n_bytes=27510, hard_timeout=300, idle_age=0, hard_age=18, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:31.891 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:31.895 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 19
2015-10-29 10:53:31.900 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:31.917 ovs-fdb DEBUG cookie=0x0, duration=71.176s, table=20, n_packets=287, n_bytes=27902, hard_timeout=300, idle_age=0, hard_age=19, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:32.935 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:32.951 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 20
2015-10-29 10:53:32.956 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:32.963 ovs-fdb DEBUG cookie=0x0, duration=72.212s, table=20, n_packets=291, n_bytes=28294, hard_timeout=300, idle_age=0, hard_age=20, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:33.968 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:33.975 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 21
2015-10-29 10:53:33.979 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:33.985 ovs-fdb DEBUG cookie=0x0, duration=73.247s, table=20, n_packets=295, n_bytes=28686, hard_timeout=300, idle_age=0, hard_age=21, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:34.999 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:35.009 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 22
2015-10-29 10:53:35.016 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:35.023 ovs-fdb DEBUG cookie=0x0, duration=74.277s, table=20, n_packets=299, n_bytes=29078, hard_timeout=300, idle_age=0, hard_age=22, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:36.031 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:36.035 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 23
2015-10-29 10:53:36.039 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:36.046 ovs-fdb DEBUG cookie=0x0, duration=75.308s, table=20, n_packets=303, n_bytes=29470, hard_timeout=300, idle_age=0, hard_age=23, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:37.060 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:37.072 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 24
2015-10-29 10:53:37.079 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:37.083 ovs-fdb DEBUG cookie=0x0, duration=76.337s, table=20, n_packets=307, n_bytes=29862, hard_timeout=300, idle_age=0, hard_age=24, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:38.093 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:38.097 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 25
2015-10-29 10:53:38.102 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:38.107 ovs-fdb DEBUG cookie=0x0, duration=77.367s, table=20, n_packets=311, n_bytes=30254, hard_timeout=300, idle_age=0, hard_age=25, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:39.125 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:39.139 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 26
2015-10-29 10:53:39.149 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:39.157 ovs-fdb DEBUG cookie=0x0, duration=78.409s, table=20, n_packets=315, n_bytes=30646, hard_timeout=300, idle_age=0, hard_age=26, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:40.166 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:40.177 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 27
2015-10-29 10:53:40.182 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:40.186 ovs-fdb DEBUG cookie=0x0, duration=79.441s, table=20, n_packets=319, n_bytes=31038, hard_timeout=300, idle_age=0, hard_age=27, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:41.195 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:41.199 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 28
2015-10-29 10:53:41.203 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:41.218 ovs-fdb DEBUG cookie=0x0, duration=80.478s, table=20, n_packets=323, n_bytes=31430, hard_timeout=300, idle_age=0, hard_age=28, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:42.236 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:42.242 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 29
2015-10-29 10:53:42.248 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:42.253 ovs-fdb DEBUG cookie=0x0, duration=81.512s, table=20, n_packets=328, n_bytes=31864, hard_timeout=300, idle_age=0, hard_age=29, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:43.268 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:43.277 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 30
2015-10-29 10:53:43.282 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:43.288 ovs-fdb DEBUG cookie=0x0, duration=82.549s, table=20, n_packets=335, n_bytes=32494, hard_timeout=300, idle_age=0, hard_age=30, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:44.305 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:44.309 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 31
2015-10-29 10:53:44.315 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:44.319 ovs-fdb DEBUG cookie=0x0, duration=83.577s, table=20, n_packets=340, n_bytes=32928, hard_timeout=300, idle_age=0, hard_age=31, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:45.332 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:45.340 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:45.350 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:45.356 ovs-fdb DEBUG cookie=0x0, duration=84.615s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=0, hard_age=32, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:46.368 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:46.373 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:46.377 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:46.383 ovs-fdb DEBUG cookie=0x0, duration=85.644s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=1, hard_age=33, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:47.397 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:47.403 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:47.407 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:47.413 ovs-fdb DEBUG cookie=0x0, duration=86.674s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=2, hard_age=34, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:48.427 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:48.432 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:48.435 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:48.444 ovs-fdb DEBUG cookie=0x0, duration=87.705s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=3, hard_age=35, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:49.456 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:49.462 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:49.466 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:49.471 ovs-fdb DEBUG cookie=0x0, duration=88.732s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=4, hard_age=36, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:50.484 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:50.489 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:50.494 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:50.498 ovs-fdb DEBUG cookie=0x0, duration=89.760s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=5, hard_age=37, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:51.512 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:51.516 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:51.521 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:51.529 ovs-fdb DEBUG cookie=0x0, duration=90.790s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=6, hard_age=38, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:52.542 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:52.546 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:52.550 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:52.560 ovs-fdb DEBUG cookie=0x0, duration=91.820s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=7, hard_age=39, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:53.574 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:53.580 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:53.584 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:53.590 ovs-fdb DEBUG cookie=0x0, duration=92.850s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=8, hard_age=40, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:54.604 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:54.617 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:54.622 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:54.625 ovs-fdb DEBUG cookie=0x0, duration=93.882s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=9, hard_age=41, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:55.635 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:55.640 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:55.645 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:55.651 ovs-fdb DEBUG cookie=0x0, duration=94.912s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=10, hard_age=42, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:56.667 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:56.672 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:56.677 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:56.684 ovs-fdb DEBUG cookie=0x0, duration=95.945s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=11, hard_age=43, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:57.698 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:57.703 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:57.707 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:57.712 ovs-fdb DEBUG cookie=0x0, duration=96.974s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=12, hard_age=44, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:58.735 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:58.740 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:58.746 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:58.758 ovs-fdb DEBUG cookie=0x0, duration=98.006s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=13, hard_age=45, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:59.781 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:59.787 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:59.792 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:59.796 ovs-fdb DEBUG cookie=0x0, duration=99.052s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=14, hard_age=46, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:00.809 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:00.818 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:00.823 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:00.840 ovs-fdb DEBUG cookie=0x0, duration=100.097s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=15, hard_age=47, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:01.877 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:01.888 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:01.900 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:01.912 ovs-fdb DEBUG cookie=0x0, duration=101.162s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=16, hard_age=49, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:02.941 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:02.946 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:02.957 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:02.995 ovs-fdb DEBUG cookie=0x0, duration=102.243s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=17, hard_age=50, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:04.010 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:04.019 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:04.027 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:04.042 ovs-fdb DEBUG cookie=0x0, duration=103.299s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=18, hard_age=51, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:05.091 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:05.112 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:05.119 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:05.147 ovs-fdb DEBUG cookie=0x0, duration=104.371s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=19, hard_age=52, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:06.155 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:06.176 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:06.188 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:06.220 ovs-fdb DEBUG cookie=0x0, duration=105.464s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=20, hard_age=53, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:07.258 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:07.274 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:07.283 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:07.293 ovs-fdb DEBUG cookie=0x0, duration=106.534s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=22, hard_age=54, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:08.297 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:08.305 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:08.313 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:08.322 ovs-fdb DEBUG cookie=0x0, duration=107.582s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=23, hard_age=55, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:09.339 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:09.353 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:09.359 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:09.375 ovs-fdb DEBUG cookie=0x0, duration=108.618s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=24, hard_age=56, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:10.377 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:10.387 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:10.394 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:10.402 ovs-fdb DEBUG cookie=0x0, duration=109.659s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=25, hard_age=57, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:11.421 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:11.425 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:11.432 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:11.469 ovs-fdb DEBUG cookie=0x0, duration=110.718s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=26, hard_age=58, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:12.486 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:12.491 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:12.497 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:12.502 ovs-fdb DEBUG cookie=0x0, duration=111.760s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=27, hard_age=59, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:13.530 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:13.539 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:13.544 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:13.549 ovs-fdb DEBUG cookie=0x0, duration=112.802s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=28, hard_age=60, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:14.555 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:14.562 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:14.567 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:14.577 ovs-fdb DEBUG cookie=0x0, duration=113.836s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=29, hard_age=61, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:15.592 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:15.596 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:15.600 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:15.619 ovs-fdb DEBUG cookie=0x0, duration=114.880s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=30, hard_age=62, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:16.635 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:16.640 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:16.649 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:16.657 ovs-fdb DEBUG cookie=0x0, duration=115.912s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=31, hard_age=63, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:17.678 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:17.687 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:17.692 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:17.697 ovs-fdb DEBUG cookie=0x0, duration=116.955s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=32, hard_age=64, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:18.712 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:18.716 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:18.721 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:18.726 ovs-fdb DEBUG cookie=0x0, duration=117.986s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=33, hard_age=65, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:19.737 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:19.744 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:19.748 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:19.753 ovs-fdb DEBUG cookie=0x0, duration=119.014s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=34, hard_age=66, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:20.766 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:20.770 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:20.774 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:20.781 ovs-fdb DEBUG cookie=0x0, duration=120.043s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=35, hard_age=67, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:21.805 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:21.814 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:21.827 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:21.840 ovs-fdb DEBUG cookie=0x0, duration=121.098s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=36, hard_age=68, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:22.862 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:22.866 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:22.871 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:22.877 ovs-fdb DEBUG cookie=0x0, duration=122.136s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=37, hard_age=70, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:23.902 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:23.911 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:23.922 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:23.952 ovs-fdb DEBUG cookie=0x0, duration=123.201s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=38, hard_age=71, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:24.985 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:24.996 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:25.006 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:25.031 ovs-fdb DEBUG cookie=0x0, duration=124.286s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=39, hard_age=72, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:26.067 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:26.075 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:26.082 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:26.102 ovs-fdb DEBUG cookie=0x0, duration=125.353s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=40, hard_age=73, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:27.129 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:27.136 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:27.149 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:27.179 ovs-fdb DEBUG cookie=0x0, duration=126.427s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=41, hard_age=74, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:28.217 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:28.236 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:28.248 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:28.257 ovs-fdb DEBUG cookie=0x0, duration=127.510s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=43, hard_age=75, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:29.283 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:29.299 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 2
2015-10-29 10:54:29.309 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:29.323 ovs-fdb DEBUG cookie=0x0, duration=128.565s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=44, hard_age=76, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:30.331 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:30.348 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 3
2015-10-29 10:54:30.355 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:30.360 ovs-fdb DEBUG cookie=0x0, duration=129.616s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=45, hard_age=77, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:31.385 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:31.396 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 4
2015-10-29 10:54:31.402 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:31.408 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 0
2015-10-29 10:54:31.417 ovs-fdb DEBUG cookie=0x0, duration=130.655s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=46, hard_age=78, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:31.421 ovs-fdb DEBUG cookie=0x0, duration=0.828s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:32.418 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:32.426 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 6
2015-10-29 10:54:32.441 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 2
2015-10-29 10:54:32.446 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:32.452 ovs-fdb DEBUG cookie=0x0, duration=131.701s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=47, hard_age=79, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:32.458 ovs-fdb DEBUG cookie=0x0, duration=1.874s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=1, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:33.464 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:33.471 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 7
2015-10-29 10:54:33.481 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 3
2015-10-29 10:54:33.488 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:33.494 ovs-fdb DEBUG cookie=0x0, duration=132.743s, table=20, n_packets=344, n_bytes=33320, hard_timeout=300, idle_age=48, hard_age=80, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:33.500 ovs-fdb DEBUG cookie=0x0, duration=2.916s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=2, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:34.525 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:34.540 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 4
2015-10-29 10:54:34.545 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:34.551 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:34.557 ovs-fdb DEBUG cookie=0x0, duration=133.797s, table=20, n_packets=348, n_bytes=33712, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:34.563 ovs-fdb DEBUG cookie=0x0, duration=3.970s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=3, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:35.576 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:35.586 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 5
2015-10-29 10:54:35.593 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:35.606 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:35.613 ovs-fdb DEBUG cookie=0x0, duration=134.848s, table=20, n_packets=352, n_bytes=34104, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:35.621 ovs-fdb DEBUG cookie=0x0, duration=5.021s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=5, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:36.622 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:36.627 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 6
2015-10-29 10:54:36.637 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:36.648 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:36.653 ovs-fdb DEBUG cookie=0x0, duration=135.906s, table=20, n_packets=356, n_bytes=34496, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:36.658 ovs-fdb DEBUG cookie=0x0, duration=6.079s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=6, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:37.670 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:37.688 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 7
2015-10-29 10:54:37.700 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:37.709 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:37.724 ovs-fdb DEBUG cookie=0x0, duration=136.956s, table=20, n_packets=360, n_bytes=34888, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:37.730 ovs-fdb DEBUG cookie=0x0, duration=7.129s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=7, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:38.744 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:38.754 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 8
2015-10-29 10:54:38.766 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:38.771 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:38.795 ovs-fdb DEBUG cookie=0x0, duration=138.036s, table=20, n_packets=364, n_bytes=35280, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:38.802 ovs-fdb DEBUG cookie=0x0, duration=8.209s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=8, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:39.819 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:39.829 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 9
2015-10-29 10:54:39.834 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:39.840 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:39.858 ovs-fdb DEBUG cookie=0x0, duration=139.113s, table=20, n_packets=368, n_bytes=35672, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:39.867 ovs-fdb DEBUG cookie=0x0, duration=9.286s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=9, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:40.888 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:40.894 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 10
2015-10-29 10:54:40.902 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:40.912 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:40.918 ovs-fdb DEBUG cookie=0x0, duration=140.168s, table=20, n_packets=372, n_bytes=36064, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:40.941 ovs-fdb DEBUG cookie=0x0, duration=10.341s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=10, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:41.939 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:41.947 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 11
2015-10-29 10:54:41.953 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:41.962 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:41.974 ovs-fdb DEBUG cookie=0x0, duration=141.228s, table=20, n_packets=378, n_bytes=36652, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:41.983 ovs-fdb DEBUG cookie=0x0, duration=11.401s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=11, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:42.998 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:43.004 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 12
2015-10-29 10:54:43.008 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:43.012 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:43.017 ovs-fdb DEBUG cookie=0x0, duration=142.265s, table=20, n_packets=382, n_bytes=37044, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:43.021 ovs-fdb DEBUG cookie=0x0, duration=12.438s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=12, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:44.025 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:44.030 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 13
2015-10-29 10:54:44.035 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:44.040 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:44.045 ovs-fdb DEBUG cookie=0x0, duration=143.301s, table=20, n_packets=386, n_bytes=37436, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:44.049 ovs-fdb DEBUG cookie=0x0, duration=13.474s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=13, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:45.054 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:45.059 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 14
2015-10-29 10:54:45.063 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:45.067 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:45.072 ovs-fdb DEBUG cookie=0x0, duration=144.332s, table=20, n_packets=390, n_bytes=37828, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:45.076 ovs-fdb DEBUG cookie=0x0, duration=14.505s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=14, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:46.093 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:46.098 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 15
2015-10-29 10:54:46.103 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:46.107 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:46.112 ovs-fdb DEBUG cookie=0x0, duration=145.362s, table=20, n_packets=394, n_bytes=38220, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:46.116 ovs-fdb DEBUG cookie=0x0, duration=15.535s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=15, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:47.114 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:47.119 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 16
2015-10-29 10:54:47.124 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:47.129 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:47.139 ovs-fdb DEBUG cookie=0x0, duration=146.395s, table=20, n_packets=398, n_bytes=38612, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:47.144 ovs-fdb DEBUG cookie=0x0, duration=16.568s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=16, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:48.149 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:48.153 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 17
2015-10-29 10:54:48.158 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:48.162 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:48.166 ovs-fdb DEBUG cookie=0x0, duration=147.425s, table=20, n_packets=402, n_bytes=39004, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:48.170 ovs-fdb DEBUG cookie=0x0, duration=17.598s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=17, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:49.179 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:49.183 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 18
2015-10-29 10:54:49.188 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:49.192 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:49.196 ovs-fdb DEBUG cookie=0x0, duration=148.455s, table=20, n_packets=406, n_bytes=39396, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:49.203 ovs-fdb DEBUG cookie=0x0, duration=18.628s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=18, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:50.206 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:50.212 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 19
2015-10-29 10:54:50.216 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:50.221 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:50.225 ovs-fdb DEBUG cookie=0x0, duration=149.483s, table=20, n_packets=410, n_bytes=39788, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:50.229 ovs-fdb DEBUG cookie=0x0, duration=19.656s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=19, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:51.235 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:51.239 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 20
2015-10-29 10:54:51.244 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:51.248 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:51.252 ovs-fdb DEBUG cookie=0x0, duration=150.511s, table=20, n_packets=415, n_bytes=40222, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:51.257 ovs-fdb DEBUG cookie=0x0, duration=20.684s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=20, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:52.262 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:52.266 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 21
2015-10-29 10:54:52.270 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:52.275 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:52.280 ovs-fdb DEBUG cookie=0x0, duration=151.542s, table=20, n_packets=419, n_bytes=40614, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:52.285 ovs-fdb DEBUG cookie=0x0, duration=21.715s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=21, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:53.294 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:53.299 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 22
2015-10-29 10:54:53.303 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:53.307 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:53.312 ovs-fdb DEBUG cookie=0x0, duration=152.568s, table=20, n_packets=423, n_bytes=41006, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:53.317 ovs-fdb DEBUG cookie=0x0, duration=22.741s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=22, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:54.322 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:54.327 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 23
2015-10-29 10:54:54.332 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:54.337 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:54.344 ovs-fdb DEBUG cookie=0x0, duration=153.603s, table=20, n_packets=427, n_bytes=41398, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:54.348 ovs-fdb DEBUG cookie=0x0, duration=23.776s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=23, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:55.358 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:55.363 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 24
2015-10-29 10:54:55.367 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:55.381 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:55.386 ovs-fdb DEBUG cookie=0x0, duration=154.631s, table=20, n_packets=431, n_bytes=41790, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:55.392 ovs-fdb DEBUG cookie=0x0, duration=24.804s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=24, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:56.390 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:56.394 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 25
2015-10-29 10:54:56.400 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:56.407 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:56.413 ovs-fdb DEBUG cookie=0x0, duration=155.666s, table=20, n_packets=435, n_bytes=42182, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:56.417 ovs-fdb DEBUG cookie=0x0, duration=25.839s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=25, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:57.425 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:57.432 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 27
2015-10-29 10:54:57.437 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:57.442 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:57.447 ovs-fdb DEBUG cookie=0x0, duration=156.706s, table=20, n_packets=439, n_bytes=42574, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:57.451 ovs-fdb DEBUG cookie=0x0, duration=26.879s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=26, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:58.463 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:58.467 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 28
2015-10-29 10:54:58.471 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:58.475 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:58.480 ovs-fdb DEBUG cookie=0x0, duration=157.741s, table=20, n_packets=443, n_bytes=42966, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:58.484 ovs-fdb DEBUG cookie=0x0, duration=27.914s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=27, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:59.496 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:59.502 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 29
2015-10-29 10:54:59.507 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:59.512 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:59.521 ovs-fdb DEBUG cookie=0x0, duration=158.777s, table=20, n_packets=449, n_bytes=43554, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:59.525 ovs-fdb DEBUG cookie=0x0, duration=28.950s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=28, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:00.532 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:00.536 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 30
2015-10-29 10:55:00.541 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:00.545 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:00.549 ovs-fdb DEBUG cookie=0x0, duration=159.806s, table=20, n_packets=453, n_bytes=43946, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:00.553 ovs-fdb DEBUG cookie=0x0, duration=29.979s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=29, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:01.567 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:01.576 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 31
2015-10-29 10:55:01.583 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:01.590 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:01.596 ovs-fdb DEBUG cookie=0x0, duration=160.851s, table=20, n_packets=458, n_bytes=44380, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:01.602 ovs-fdb DEBUG cookie=0x0, duration=31.024s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=31, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:02.621 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:02.627 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 32
2015-10-29 10:55:02.637 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:02.646 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:02.651 ovs-fdb DEBUG cookie=0x0, duration=161.893s, table=20, n_packets=462, n_bytes=44772, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:02.657 ovs-fdb DEBUG cookie=0x0, duration=32.066s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=32, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:03.656 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:03.689 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 33
2015-10-29 10:55:03.694 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:03.706 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:03.722 ovs-fdb DEBUG cookie=0x0, duration=162.940s, table=20, n_packets=466, n_bytes=45164, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:03.729 ovs-fdb DEBUG cookie=0x0, duration=33.113s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=33, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:04.741 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:04.752 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 34
2015-10-29 10:55:04.763 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:04.775 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:04.792 ovs-fdb DEBUG cookie=0x0, duration=164.002s, table=20, n_packets=470, n_bytes=45556, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:04.798 ovs-fdb DEBUG cookie=0x0, duration=34.175s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=34, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:05.807 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:05.820 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 35
2015-10-29 10:55:05.832 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:05.842 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:05.851 ovs-fdb DEBUG cookie=0x0, duration=165.089s, table=20, n_packets=474, n_bytes=45948, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:05.865 ovs-fdb DEBUG cookie=0x0, duration=35.262s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=35, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:06.870 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:06.876 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 36
2015-10-29 10:55:06.897 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:06.914 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:06.931 ovs-fdb DEBUG cookie=0x0, duration=166.179s, table=20, n_packets=478, n_bytes=46340, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:06.940 ovs-fdb DEBUG cookie=0x0, duration=36.352s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=36, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:07.971 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:07.979 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 37
2015-10-29 10:55:07.987 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:08.006 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:08.012 ovs-fdb DEBUG cookie=0x0, duration=167.262s, table=20, n_packets=482, n_bytes=46732, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:08.022 ovs-fdb DEBUG cookie=0x0, duration=37.435s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=37, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:09.046 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:09.067 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 38
2015-10-29 10:55:09.077 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:09.085 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:09.092 ovs-fdb DEBUG cookie=0x0, duration=168.327s, table=20, n_packets=488, n_bytes=47320, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:09.099 ovs-fdb DEBUG cookie=0x0, duration=38.500s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=38, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:10.102 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:10.112 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 39
2015-10-29 10:55:10.122 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:10.132 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:10.140 ovs-fdb DEBUG cookie=0x0, duration=169.392s, table=20, n_packets=492, n_bytes=47712, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:10.145 ovs-fdb DEBUG cookie=0x0, duration=39.565s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=39, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:11.154 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:11.165 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 40
2015-10-29 10:55:11.170 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:11.174 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:11.178 ovs-fdb DEBUG cookie=0x0, duration=170.431s, table=20, n_packets=496, n_bytes=48104, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:11.182 ovs-fdb DEBUG cookie=0x0, duration=40.604s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=40, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:12.185 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:12.189 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 41
2015-10-29 10:55:12.195 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:12.199 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:12.204 ovs-fdb DEBUG cookie=0x0, duration=171.460s, table=20, n_packets=500, n_bytes=48496, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:12.208 ovs-fdb DEBUG cookie=0x0, duration=41.633s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=41, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:13.213 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:13.218 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 42
2015-10-29 10:55:13.223 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:13.227 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:13.231 ovs-fdb DEBUG cookie=0x0, duration=172.489s, table=20, n_packets=504, n_bytes=48888, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:13.235 ovs-fdb DEBUG cookie=0x0, duration=42.662s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=42, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:14.241 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:14.246 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 43
2015-10-29 10:55:14.250 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:14.254 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:14.258 ovs-fdb DEBUG cookie=0x0, duration=173.519s, table=20, n_packets=508, n_bytes=49280, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:14.262 ovs-fdb DEBUG cookie=0x0, duration=43.692s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=43, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:15.274 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:15.279 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 44
2015-10-29 10:55:15.283 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:15.288 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:15.292 ovs-fdb DEBUG cookie=0x0, duration=174.548s, table=20, n_packets=512, n_bytes=49672, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:15.297 ovs-fdb DEBUG cookie=0x0, duration=44.721s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=44, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:16.306 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:16.311 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 45
2015-10-29 10:55:16.315 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:16.319 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:16.323 ovs-fdb DEBUG cookie=0x0, duration=175.576s, table=20, n_packets=516, n_bytes=50064, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:16.327 ovs-fdb DEBUG cookie=0x0, duration=45.749s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=45, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:17.329 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:17.341 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 46
2015-10-29 10:55:17.345 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:17.349 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:17.354 ovs-fdb DEBUG cookie=0x0, duration=176.607s, table=20, n_packets=520, n_bytes=50456, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:17.358 ovs-fdb DEBUG cookie=0x0, duration=46.780s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=46, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:18.367 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:18.372 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 47
2015-10-29 10:55:18.378 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:18.385 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:18.394 ovs-fdb DEBUG cookie=0x0, duration=177.654s, table=20, n_packets=524, n_bytes=50848, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:18.399 ovs-fdb DEBUG cookie=0x0, duration=47.827s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=47, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:19.425 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:19.431 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 49
2015-10-29 10:55:19.435 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:55:19.440 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:55:19.447 ovs-fdb DEBUG cookie=0x0, duration=178.693s, table=20, n_packets=528, n_bytes=51240, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:19.453 ovs-fdb DEBUG cookie=0x0, duration=48.866s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=48, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:20.447 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:20.452 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 50
2015-10-29 10:55:20.456 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:55:20.461 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:55:20.466 ovs-fdb DEBUG cookie=0x0, duration=179.727s, table=20, n_packets=533, n_bytes=51674, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:20.470 ovs-fdb DEBUG cookie=0x0, duration=49.900s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=49, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:21.492 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:21.497 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 51
2015-10-29 10:55:21.501 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:55:21.506 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:55:21.511 ovs-fdb DEBUG cookie=0x0, duration=180.764s, table=20, n_packets=537, n_bytes=52066, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:21.515 ovs-fdb DEBUG cookie=0x0, duration=50.937s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=50, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:22.644 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:22.649 ovs-fdb DEBUG 61 1 4e:2d:70:74:20:e6 52
2015-10-29 10:55:22.656 ovs-fdb DEBUG 61 1 fa:16:3e:50:a3:46 1
2015-10-29 10:55:22.661 ovs-fdb DEBUG 4 1 fa:16:3e:c5:24:11 1
2015-10-29 10:55:22.671 ovs-fdb DEBUG cookie=0x0, duration=181.803s, table=20, n_packets=541, n_bytes=52458, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:50:a3:46 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:22.676 ovs-fdb DEBUG cookie=0x0, duration=51.976s, table=20, n_packets=0, n_bytes=0, hard_timeout=300, idle_age=51, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=4e:2d:70:74:20:e6 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2

View File

@ -0,0 +1,10 @@
2015-10-29 10:51:23.829 3667 INFO neutron.openstack.common.service [req-7a01c151-b6ff-4dd9-9fd2-9710a83bab57 None] Caught SIGTERM, exiting
2015-10-29 10:51:28.862 27650 INFO neutron.common.config [-] Logging enabled!
2015-10-29 10:51:28.865 27650 INFO neutron.common.config [-] /usr/bin/neutron-l3-agent version 2014.2.3-19.el7ost
2015-10-29 10:51:28.916 27650 INFO oslo.messaging._drivers.impl_rabbit [req-6afee29e-f17a-4168-8f7b-fcaea6609e4e ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.018 27650 INFO oslo.messaging._drivers.impl_rabbit [req-6afee29e-f17a-4168-8f7b-fcaea6609e4e ] Connected to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.046 27650 INFO oslo.messaging._drivers.impl_rabbit [req-6afee29e-f17a-4168-8f7b-fcaea6609e4e ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.159 27650 INFO oslo.messaging._drivers.impl_rabbit [req-6afee29e-f17a-4168-8f7b-fcaea6609e4e ] Connected to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.601 27650 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.692 27650 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-29 10:51:29.754 27650 INFO neutron.agent.l3_agent [-] L3 agent started

View File

@ -0,0 +1,288 @@
2015-10-20 09:23:45.717 5411 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:23:45.719 5411 INFO neutron.common.config [-] /usr/bin/neutron-metadata-agent version 2014.2.3-19.el7ost
2015-10-20 09:23:45.801 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Starting 4 workers
2015-10-20 09:23:45.808 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Started child 5498
2015-10-20 09:23:45.822 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Started child 5499
2015-10-20 09:23:45.836 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Started child 5500
2015-10-20 09:23:45.850 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Started child 5501
2015-10-20 09:23:46.064 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:46.102 5498 INFO eventlet.wsgi.server [-] (5498) wsgi starting up on http:///:v/
2015-10-20 09:23:46.206 5499 INFO eventlet.wsgi.server [-] (5499) wsgi starting up on http:///:v/
2015-10-20 09:23:46.240 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:46.250 5501 INFO eventlet.wsgi.server [-] (5501) wsgi starting up on http:///:v/
2015-10-20 09:23:46.280 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:23:46.293 5500 INFO eventlet.wsgi.server [-] (5500) wsgi starting up on http:///:v/
2015-10-20 09:23:46.358 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:16.186 5411 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'q-plugin': [Errno 110] Connection timed out
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:16.186 5411 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:16.198 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:17.205 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:17.355 5411 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:22.426 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Caught SIGTERM, stopping children
2015-10-20 12:20:22.428 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Waiting on 4 children to exit
2015-10-20 12:20:22.429 5500 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child caught SIGTERM, exiting
2015-10-20 12:20:22.436 5499 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child caught SIGTERM, exiting
2015-10-20 12:20:22.437 5498 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child caught SIGTERM, exiting
2015-10-20 12:20:22.446 5501 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child caught SIGTERM, exiting
2015-10-20 12:20:22.433 5500 CRITICAL neutron [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.433 5500 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:22.433 5500 TRACE neutron sys.exit(main())
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:22.433 5500 TRACE neutron proxy.run()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:22.433 5500 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:22.433 5500 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:22.433 5500 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:22.433 5500 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:22.433 5500 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:22.433 5500 TRACE neutron launcher.stop()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:22.433 5500 TRACE neutron self.services.stop()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:22.433 5500 TRACE neutron service.stop()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:22.433 5500 TRACE neutron self._server.kill()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:22.433 5500 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:22.433 5500 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:22.433 5500 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:22.433 5500 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:22.433 5500 TRACE neutron pool.waitall()
2015-10-20 12:20:22.433 5500 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:22.433 5500 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:22.433 5500 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.433 5500 TRACE neutron
2015-10-20 12:20:22.451 5501 CRITICAL neutron [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.451 5501 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:22.451 5501 TRACE neutron sys.exit(main())
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:22.451 5501 TRACE neutron proxy.run()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:22.451 5501 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:22.451 5501 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:22.451 5501 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:22.451 5501 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:22.451 5501 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:22.451 5501 TRACE neutron launcher.stop()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:22.451 5501 TRACE neutron self.services.stop()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:22.451 5501 TRACE neutron service.stop()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:22.451 5501 TRACE neutron self._server.kill()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:22.451 5501 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:22.451 5501 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:22.451 5501 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:22.451 5501 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:22.451 5501 TRACE neutron pool.waitall()
2015-10-20 12:20:22.451 5501 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:22.451 5501 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:22.451 5501 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.451 5501 TRACE neutron
2015-10-20 12:20:22.441 5499 CRITICAL neutron [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.441 5499 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:22.441 5499 TRACE neutron sys.exit(main())
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:22.441 5499 TRACE neutron proxy.run()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:22.441 5499 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:22.441 5499 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:22.441 5499 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:22.441 5499 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:22.441 5499 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:22.441 5499 TRACE neutron launcher.stop()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:22.441 5499 TRACE neutron self.services.stop()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:22.441 5499 TRACE neutron service.stop()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:22.441 5499 TRACE neutron self._server.kill()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:22.441 5499 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:22.441 5499 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:22.441 5499 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:22.441 5499 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:22.441 5499 TRACE neutron pool.waitall()
2015-10-20 12:20:22.441 5499 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:22.441 5499 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:22.441 5499 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.441 5499 TRACE neutron
2015-10-20 12:20:22.442 5498 CRITICAL neutron [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.442 5498 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:22.442 5498 TRACE neutron sys.exit(main())
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:22.442 5498 TRACE neutron proxy.run()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:22.442 5498 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:22.442 5498 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:22.442 5498 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:22.442 5498 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:22.442 5498 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:22.442 5498 TRACE neutron launcher.stop()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:22.442 5498 TRACE neutron self.services.stop()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:22.442 5498 TRACE neutron service.stop()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:22.442 5498 TRACE neutron self._server.kill()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:22.442 5498 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:22.442 5498 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:22.442 5498 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:22.442 5498 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:22.442 5498 TRACE neutron pool.waitall()
2015-10-20 12:20:22.442 5498 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:22.442 5498 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:22.442 5498 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:22.442 5498 TRACE neutron
2015-10-20 12:20:23.955 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child 5498 exited with status 1
2015-10-20 12:20:23.958 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child 5500 exited with status 1
2015-10-20 12:20:24.046 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child 5501 exited with status 1
2015-10-20 12:20:24.063 5411 INFO neutron.openstack.common.service [req-7522c96c-2b7c-4f99-9d14-fde98e04da25 None] Child 5499 exited with status 1
2015-10-20 12:40:54.179 1494 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:40:54.317 1494 INFO neutron.common.config [-] /usr/bin/neutron-metadata-agent version 2014.2.3-19.el7ost
2015-10-20 12:40:55.258 1494 INFO neutron.openstack.common.service [req-59b59fbd-5d2f-4718-9e95-f9d6d3aca00c None] Starting 4 workers
2015-10-20 12:40:55.266 1494 INFO neutron.openstack.common.service [req-59b59fbd-5d2f-4718-9e95-f9d6d3aca00c None] Started child 2160
2015-10-20 12:40:55.279 1494 INFO neutron.openstack.common.service [req-59b59fbd-5d2f-4718-9e95-f9d6d3aca00c None] Started child 2161
2015-10-20 12:40:55.453 1494 INFO neutron.openstack.common.service [req-59b59fbd-5d2f-4718-9e95-f9d6d3aca00c None] Started child 2168
2015-10-20 12:40:55.600 1494 INFO neutron.openstack.common.service [req-59b59fbd-5d2f-4718-9e95-f9d6d3aca00c None] Started child 2169
2015-10-20 12:40:56.433 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:56.757 2160 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
2015-10-20 12:40:56.795 2161 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
2015-10-20 12:40:56.854 2169 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
2015-10-20 12:40:56.915 2168 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 10 attempts left.
2015-10-20 12:40:57.117 1494 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:40:58.120 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:59.123 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:59.528 1494 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:41:02.531 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:03.535 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:03.732 1494 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 5 seconds.
2015-10-20 12:41:06.772 2160 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
2015-10-20 12:41:06.813 2161 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
2015-10-20 12:41:06.869 2169 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
2015-10-20 12:41:06.929 2168 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 9 attempts left.
2015-10-20 12:41:08.786 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:09.790 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:10.000 1494 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 7 seconds.
2015-10-20 12:41:16.787 2160 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
2015-10-20 12:41:16.826 2161 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
2015-10-20 12:41:16.886 2169 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
2015-10-20 12:41:16.945 2168 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 8 attempts left.
2015-10-20 12:41:17.012 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:18.019 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:18.186 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:18.218 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:18.370 1494 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:26.805 2160 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
2015-10-20 12:41:26.839 2161 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
2015-10-20 12:41:26.903 2169 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
2015-10-20 12:41:26.959 2168 WARNING oslo.db.sqlalchemy.session [-] SQL connection failed. 7 attempts left.
2015-10-20 12:41:37.064 2160 INFO eventlet.wsgi.server [-] (2160) wsgi starting up on http:///:v/
2015-10-20 12:41:37.065 2161 INFO eventlet.wsgi.server [-] (2161) wsgi starting up on http:///:v/
2015-10-20 12:41:37.117 2169 INFO eventlet.wsgi.server [-] (2169) wsgi starting up on http:///:v/
2015-10-20 12:41:37.182 2168 INFO eventlet.wsgi.server [-] (2168) wsgi starting up on http:///:v/
2015-10-20 12:42:18.405 1494 ERROR neutron.agent.metadata.agent [-] Failed reporting state!
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent Traceback (most recent call last):
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 351, in _report_state
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent use_call=self.agent_state.get('start_flag'))
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent return self.call(context, msg)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent return method(*args, **kwargs)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent context, msg, rpc_method='call', **kwargs)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent return func(context, msg['method'], **msg['args'])
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent retry=self.retry)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent timeout=timeout, retry=retry)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent retry=retry)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent self._raise_timeout_exception(msg_id)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent MessagingTimeout: Timed out waiting for a reply to message ID 25d3ebcf928946c8beea3095250a0aa1.
2015-10-20 12:42:18.405 1494 TRACE neutron.agent.metadata.agent
2015-10-20 12:42:18.485 1494 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 52.05746 sec

View File

@ -0,0 +1,6 @@
2015-10-20 10:46:07.920 7806 INFO neutron.common.config [-] Logging enabled!
2015-10-20 10:46:07.923 7806 INFO neutron.common.config [-] /bin/neutron-ns-metadata-proxy version 2014.2.3-19.el7ost
2015-10-20 10:46:08.075 7822 INFO neutron.wsgi [-] (7822) wsgi starting up on http://0.0.0.0:9697/
2015-10-20 12:42:41.552 12269 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:42:41.561 12269 INFO neutron.common.config [-] /bin/neutron-ns-metadata-proxy version 2014.2.3-19.el7ost
2015-10-20 12:42:41.879 12282 INFO neutron.wsgi [-] (12282) wsgi starting up on http://0.0.0.0:9697/

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,15 @@
2015-10-20 09:23:00.873 4860 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:23:00.875 4860 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 09:23:01.497 4860 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 09:23:01.815 4860 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully
2015-10-20 12:20:33.328 26304 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:20:33.330 26304 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 12:20:37.617 26304 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 12:20:40.707 26304 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-ex
2015-10-20 12:20:43.347 26304 INFO neutron.agent.ovs_cleanup_util [-] Delete qvo2fd11ba3-51
2015-10-20 12:20:43.369 26304 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully
2015-10-20 12:41:10.285 1834 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:41:10.341 1834 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 12:41:19.155 1834 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 12:41:20.789 1834 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-ex
2015-10-20 12:41:22.384 1834 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully

View File

@ -0,0 +1,288 @@
2015-10-29 10:52:20.953 pinger DEBUG PING 192.168.233.100 (192.168.233.100) 56(84) bytes of data.
2015-10-29 10:52:20.959 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=1 ttl=63 time=1.97 ms
2015-10-29 10:52:21.453 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=2 ttl=63 time=0.826 ms
2015-10-29 10:52:21.953 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=3 ttl=63 time=0.833 ms
2015-10-29 10:52:22.453 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=4 ttl=63 time=0.840 ms
2015-10-29 10:52:22.954 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=5 ttl=63 time=0.874 ms
2015-10-29 10:52:23.454 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=6 ttl=63 time=0.805 ms
2015-10-29 10:52:23.955 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=7 ttl=63 time=0.830 ms
2015-10-29 10:52:24.465 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=8 ttl=63 time=1.00 ms
2015-10-29 10:52:24.957 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=9 ttl=63 time=0.871 ms
2015-10-29 10:52:25.457 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=10 ttl=63 time=0.828 ms
2015-10-29 10:52:25.959 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=11 ttl=63 time=0.790 ms
2015-10-29 10:52:26.459 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=12 ttl=63 time=0.799 ms
2015-10-29 10:52:26.962 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=13 ttl=63 time=0.822 ms
2015-10-29 10:52:27.461 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=14 ttl=63 time=0.903 ms
2015-10-29 10:52:27.963 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=15 ttl=63 time=0.792 ms
2015-10-29 10:52:28.463 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=16 ttl=63 time=1.02 ms
2015-10-29 10:52:28.965 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=17 ttl=63 time=1.03 ms
2015-10-29 10:52:29.465 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=18 ttl=63 time=0.957 ms
2015-10-29 10:52:29.966 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=19 ttl=63 time=1.06 ms
2015-10-29 10:52:30.467 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=20 ttl=63 time=1.03 ms
2015-10-29 10:52:30.970 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=21 ttl=63 time=3.06 ms
2015-10-29 10:52:31.468 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=22 ttl=63 time=0.961 ms
2015-10-29 10:52:31.972 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=23 ttl=63 time=0.942 ms
2015-10-29 10:52:32.470 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=24 ttl=63 time=0.919 ms
2015-10-29 10:52:32.972 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=25 ttl=63 time=1.03 ms
2015-10-29 10:52:33.472 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=26 ttl=63 time=1.04 ms
2015-10-29 10:52:33.972 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=27 ttl=63 time=0.942 ms
2015-10-29 10:52:34.473 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=28 ttl=63 time=0.824 ms
2015-10-29 10:52:34.976 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=29 ttl=63 time=1.01 ms
2015-10-29 10:52:35.475 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=30 ttl=63 time=0.939 ms
2015-10-29 10:52:35.977 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=31 ttl=63 time=0.892 ms
2015-10-29 10:52:36.477 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=32 ttl=63 time=0.938 ms
2015-10-29 10:52:36.980 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=33 ttl=63 time=1.00 ms
2015-10-29 10:52:37.479 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=34 ttl=63 time=0.878 ms
2015-10-29 10:52:37.980 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=35 ttl=63 time=0.916 ms
2015-10-29 10:52:38.480 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=36 ttl=63 time=0.968 ms
2015-10-29 10:52:38.991 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=37 ttl=63 time=1.03 ms
2015-10-29 10:52:39.483 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=38 ttl=63 time=0.929 ms
2015-10-29 10:52:39.984 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=39 ttl=63 time=1.71 ms
2015-10-29 10:52:40.484 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=40 ttl=63 time=0.915 ms
2015-10-29 10:52:40.997 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=41 ttl=63 time=1.01 ms
2015-10-29 10:52:41.486 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=42 ttl=63 time=0.872 ms
2015-10-29 10:52:41.987 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=43 ttl=63 time=0.870 ms
2015-10-29 10:52:42.486 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=44 ttl=63 time=0.867 ms
2015-10-29 10:52:42.989 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=45 ttl=63 time=0.923 ms
2015-10-29 10:52:43.489 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=46 ttl=63 time=0.902 ms
2015-10-29 10:52:43.990 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=47 ttl=63 time=0.902 ms
2015-10-29 10:52:44.490 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=48 ttl=63 time=0.911 ms
2015-10-29 10:52:44.996 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=49 ttl=63 time=1.03 ms
2015-10-29 10:52:45.493 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=50 ttl=63 time=0.984 ms
2015-10-29 10:52:45.994 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=51 ttl=63 time=0.933 ms
2015-10-29 10:52:46.497 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=52 ttl=63 time=0.977 ms
2015-10-29 10:52:46.996 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=53 ttl=63 time=1.01 ms
2015-10-29 10:52:47.515 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=54 ttl=63 time=1.01 ms
2015-10-29 10:52:47.999 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=55 ttl=63 time=1.05 ms
2015-10-29 10:52:48.502 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=56 ttl=63 time=0.948 ms
2015-10-29 10:52:49.009 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=57 ttl=63 time=0.991 ms
2015-10-29 10:52:49.506 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=58 ttl=63 time=0.910 ms
2015-10-29 10:52:50.015 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=59 ttl=63 time=0.997 ms
2015-10-29 10:52:50.506 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=60 ttl=63 time=0.883 ms
2015-10-29 10:52:51.014 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=61 ttl=63 time=1.06 ms
2015-10-29 10:52:51.509 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=62 ttl=63 time=1.14 ms
2015-10-29 10:52:52.010 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=63 ttl=63 time=0.967 ms
2015-10-29 10:52:52.511 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=64 ttl=63 time=1.06 ms
2015-10-29 10:52:53.012 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=65 ttl=63 time=1.13 ms
2015-10-29 10:52:53.513 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=66 ttl=63 time=0.872 ms
2015-10-29 10:52:54.013 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=67 ttl=63 time=0.897 ms
2015-10-29 10:52:54.515 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=68 ttl=63 time=1.08 ms
2015-10-29 10:52:55.016 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=69 ttl=63 time=1.01 ms
2015-10-29 10:52:55.518 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=70 ttl=63 time=3.02 ms
2015-10-29 10:52:56.035 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=71 ttl=63 time=1.48 ms
2015-10-29 10:52:56.532 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=72 ttl=63 time=0.921 ms
2015-10-29 10:52:57.026 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=73 ttl=63 time=1.01 ms
2015-10-29 10:52:57.525 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=74 ttl=63 time=0.876 ms
2015-10-29 10:52:58.031 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=75 ttl=63 time=0.894 ms
2015-10-29 10:52:58.538 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=76 ttl=63 time=0.936 ms
2015-10-29 10:52:59.040 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=77 ttl=63 time=1.06 ms
2015-10-29 10:52:59.553 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=78 ttl=63 time=0.972 ms
2015-10-29 10:53:00.046 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=79 ttl=63 time=0.984 ms
2015-10-29 10:53:00.544 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=80 ttl=63 time=0.967 ms
2015-10-29 10:53:01.052 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=81 ttl=63 time=0.981 ms
2015-10-29 10:53:01.545 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=82 ttl=63 time=0.969 ms
2015-10-29 10:53:02.048 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=83 ttl=63 time=0.988 ms
2015-10-29 10:53:02.549 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=84 ttl=63 time=1.13 ms
2015-10-29 10:53:03.054 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=85 ttl=63 time=0.973 ms
2015-10-29 10:53:03.552 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=86 ttl=63 time=0.904 ms
2015-10-29 10:53:04.065 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=87 ttl=63 time=0.953 ms
2015-10-29 10:53:04.569 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=88 ttl=63 time=0.937 ms
2015-10-29 10:53:05.069 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=89 ttl=63 time=1.02 ms
2015-10-29 10:53:05.559 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=90 ttl=63 time=0.972 ms
2015-10-29 10:53:06.068 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=91 ttl=63 time=0.921 ms
2015-10-29 10:53:06.567 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=92 ttl=63 time=1.91 ms
2015-10-29 10:53:07.075 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=93 ttl=63 time=0.912 ms
2015-10-29 10:53:07.575 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=94 ttl=63 time=0.958 ms
2015-10-29 10:53:08.080 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=95 ttl=63 time=0.889 ms
2015-10-29 10:53:08.577 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=96 ttl=63 time=1.11 ms
2015-10-29 10:53:09.085 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=97 ttl=63 time=1.06 ms
2015-10-29 10:53:09.581 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=98 ttl=63 time=1.25 ms
2015-10-29 10:53:10.083 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=99 ttl=63 time=1.12 ms
2015-10-29 10:53:10.587 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=100 ttl=63 time=1.03 ms
2015-10-29 10:53:11.090 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=101 ttl=63 time=2.04 ms
2015-10-29 10:53:11.584 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=102 ttl=63 time=2.86 ms
2015-10-29 10:53:12.092 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=103 ttl=63 time=1.03 ms
2015-10-29 10:53:45.718 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=170 ttl=63 time=1.34 ms
2015-10-29 10:53:46.219 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=171 ttl=63 time=0.767 ms
2015-10-29 10:53:46.719 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=172 ttl=63 time=0.763 ms
2015-10-29 10:53:47.230 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=173 ttl=63 time=1.64 ms
2015-10-29 10:53:47.720 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=174 ttl=63 time=0.603 ms
2015-10-29 10:53:48.222 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=175 ttl=63 time=0.636 ms
2015-10-29 10:53:48.724 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=176 ttl=63 time=0.727 ms
2015-10-29 10:53:49.224 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=177 ttl=63 time=0.947 ms
2015-10-29 10:53:49.725 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=178 ttl=63 time=0.911 ms
2015-10-29 10:53:50.226 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=179 ttl=63 time=1.53 ms
2015-10-29 10:53:50.727 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=180 ttl=63 time=0.879 ms
2015-10-29 10:53:51.238 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=181 ttl=63 time=1.68 ms
2015-10-29 10:53:51.740 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=182 ttl=63 time=2.79 ms
2015-10-29 10:53:52.236 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=183 ttl=63 time=0.912 ms
2015-10-29 10:53:52.736 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=184 ttl=63 time=0.794 ms
2015-10-29 10:53:53.238 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=185 ttl=63 time=1.62 ms
2015-10-29 10:53:53.739 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=186 ttl=63 time=0.942 ms
2015-10-29 10:53:54.239 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=187 ttl=63 time=1.08 ms
2015-10-29 10:53:54.741 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=188 ttl=63 time=1.21 ms
2015-10-29 10:53:55.242 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=189 ttl=63 time=1.08 ms
2015-10-29 10:53:55.747 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=190 ttl=63 time=3.90 ms
2015-10-29 10:53:56.245 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=191 ttl=63 time=1.38 ms
2015-10-29 10:53:56.744 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=192 ttl=63 time=0.768 ms
2015-10-29 10:53:57.249 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=193 ttl=63 time=1.51 ms
2015-10-29 10:53:57.747 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=194 ttl=63 time=0.740 ms
2015-10-29 10:53:58.253 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=195 ttl=63 time=0.743 ms
2015-10-29 10:53:58.756 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=196 ttl=63 time=1.03 ms
2015-10-29 10:53:59.251 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=197 ttl=63 time=0.751 ms
2015-10-29 10:53:59.760 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=198 ttl=63 time=0.783 ms
2015-10-29 10:54:00.254 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=199 ttl=63 time=0.718 ms
2015-10-29 10:54:00.764 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=200 ttl=63 time=1.68 ms
2015-10-29 10:54:01.265 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=201 ttl=63 time=2.82 ms
2015-10-29 10:54:01.779 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=202 ttl=63 time=3.08 ms
2015-10-29 10:54:02.273 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=203 ttl=63 time=6.41 ms
2015-10-29 10:54:02.757 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=204 ttl=63 time=0.869 ms
2015-10-29 10:54:03.280 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=205 ttl=63 time=4.04 ms
2015-10-29 10:54:03.777 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=206 ttl=63 time=2.00 ms
2015-10-29 10:54:04.264 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=207 ttl=63 time=1.62 ms
2015-10-29 10:54:04.777 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=208 ttl=63 time=3.12 ms
2015-10-29 10:54:05.290 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=209 ttl=63 time=8.43 ms
2015-10-29 10:54:05.776 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=210 ttl=63 time=3.19 ms
2015-10-29 10:54:06.271 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=211 ttl=63 time=2.25 ms
2015-10-29 10:54:06.779 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=212 ttl=63 time=3.91 ms
2015-10-29 10:54:07.290 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=213 ttl=63 time=0.717 ms
2015-10-29 10:54:07.782 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=214 ttl=63 time=1.06 ms
2015-10-29 10:54:08.280 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=215 ttl=63 time=0.712 ms
2015-10-29 10:54:08.778 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=216 ttl=63 time=0.730 ms
2015-10-29 10:54:09.279 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=217 ttl=63 time=0.866 ms
2015-10-29 10:54:09.785 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=218 ttl=63 time=2.41 ms
2015-10-29 10:54:10.280 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=219 ttl=63 time=0.716 ms
2015-10-29 10:54:10.780 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=220 ttl=63 time=0.822 ms
2015-10-29 10:54:11.282 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=221 ttl=63 time=1.17 ms
2015-10-29 10:54:11.784 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=222 ttl=63 time=0.786 ms
2015-10-29 10:54:12.288 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=223 ttl=63 time=0.696 ms
2015-10-29 10:54:12.784 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=224 ttl=63 time=0.793 ms
2015-10-29 10:54:13.290 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=225 ttl=63 time=1.97 ms
2015-10-29 10:54:13.788 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=226 ttl=63 time=1.88 ms
2015-10-29 10:54:14.286 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=227 ttl=63 time=0.836 ms
2015-10-29 10:54:14.787 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=228 ttl=63 time=0.657 ms
2015-10-29 10:54:15.292 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=229 ttl=63 time=2.02 ms
2015-10-29 10:54:15.797 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=230 ttl=63 time=1.76 ms
2015-10-29 10:54:16.291 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=231 ttl=63 time=0.857 ms
2015-10-29 10:54:16.792 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=232 ttl=63 time=0.808 ms
2015-10-29 10:54:17.305 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=233 ttl=63 time=4.72 ms
2015-10-29 10:54:17.794 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=234 ttl=63 time=1.01 ms
2015-10-29 10:54:18.293 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=235 ttl=63 time=0.913 ms
2015-10-29 10:54:18.794 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=236 ttl=63 time=0.680 ms
2015-10-29 10:54:19.297 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=237 ttl=63 time=2.46 ms
2015-10-29 10:54:19.796 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=238 ttl=63 time=1.65 ms
2015-10-29 10:54:20.300 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=239 ttl=63 time=0.892 ms
2015-10-29 10:54:20.799 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=240 ttl=63 time=0.721 ms
2015-10-29 10:54:21.301 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=241 ttl=63 time=0.753 ms
2015-10-29 10:54:21.820 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=242 ttl=63 time=6.01 ms
2015-10-29 10:54:22.302 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=243 ttl=63 time=0.681 ms
2015-10-29 10:54:22.803 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=244 ttl=63 time=0.650 ms
2015-10-29 10:54:23.311 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=245 ttl=63 time=3.08 ms
2015-10-29 10:54:23.820 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=246 ttl=63 time=4.66 ms
2015-10-29 10:54:24.313 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=247 ttl=63 time=1.51 ms
2015-10-29 10:54:24.820 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=248 ttl=63 time=3.76 ms
2015-10-29 10:54:25.317 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=249 ttl=63 time=1.58 ms
2015-10-29 10:54:25.829 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=250 ttl=63 time=1.17 ms
2015-10-29 10:54:26.324 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=251 ttl=63 time=1.49 ms
2015-10-29 10:54:26.838 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=252 ttl=63 time=2.01 ms
2015-10-29 10:54:27.334 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=253 ttl=63 time=3.33 ms
2015-10-29 10:54:33.865 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=266 ttl=63 time=1.49 ms
2015-10-29 10:54:34.370 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=267 ttl=63 time=1.02 ms
2015-10-29 10:54:34.873 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=268 ttl=63 time=0.903 ms
2015-10-29 10:54:35.376 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=269 ttl=63 time=0.956 ms
2015-10-29 10:54:35.872 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=270 ttl=63 time=0.965 ms
2015-10-29 10:54:36.383 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=271 ttl=63 time=1.16 ms
2015-10-29 10:54:36.877 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=272 ttl=63 time=0.984 ms
2015-10-29 10:54:37.378 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=273 ttl=63 time=1.09 ms
2015-10-29 10:54:37.879 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=274 ttl=63 time=0.971 ms
2015-10-29 10:54:38.385 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=275 ttl=63 time=0.927 ms
2015-10-29 10:54:38.895 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=276 ttl=63 time=1.01 ms
2015-10-29 10:54:39.383 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=277 ttl=63 time=1.01 ms
2015-10-29 10:54:39.893 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=278 ttl=63 time=2.02 ms
2015-10-29 10:54:40.384 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=279 ttl=63 time=1.12 ms
2015-10-29 10:54:40.907 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=280 ttl=63 time=1.00 ms
2015-10-29 10:54:41.394 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=281 ttl=63 time=0.974 ms
2015-10-29 10:54:41.891 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=282 ttl=63 time=0.964 ms
2015-10-29 10:54:42.391 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=283 ttl=63 time=0.962 ms
2015-10-29 10:54:42.891 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=284 ttl=63 time=0.893 ms
2015-10-29 10:54:43.392 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=285 ttl=63 time=0.975 ms
2015-10-29 10:54:43.893 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=286 ttl=63 time=0.944 ms
2015-10-29 10:54:44.394 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=287 ttl=63 time=0.987 ms
2015-10-29 10:54:44.897 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=288 ttl=63 time=1.03 ms
2015-10-29 10:54:45.395 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=289 ttl=63 time=0.892 ms
2015-10-29 10:54:45.895 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=290 ttl=63 time=0.899 ms
2015-10-29 10:54:46.396 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=291 ttl=63 time=0.960 ms
2015-10-29 10:54:46.897 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=292 ttl=63 time=0.886 ms
2015-10-29 10:54:47.398 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=293 ttl=63 time=0.976 ms
2015-10-29 10:54:47.899 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=294 ttl=63 time=0.851 ms
2015-10-29 10:54:48.399 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=295 ttl=63 time=1.02 ms
2015-10-29 10:54:48.900 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=296 ttl=63 time=1.05 ms
2015-10-29 10:54:49.402 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=297 ttl=63 time=0.944 ms
2015-10-29 10:54:49.902 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=298 ttl=63 time=0.885 ms
2015-10-29 10:54:50.403 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=299 ttl=63 time=0.909 ms
2015-10-29 10:54:50.904 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=300 ttl=63 time=0.906 ms
2015-10-29 10:54:51.405 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=301 ttl=63 time=0.943 ms
2015-10-29 10:54:51.905 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=302 ttl=63 time=0.905 ms
2015-10-29 10:54:52.406 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=303 ttl=63 time=0.925 ms
2015-10-29 10:54:52.907 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=304 ttl=63 time=0.902 ms
2015-10-29 10:54:53.407 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=305 ttl=63 time=0.971 ms
2015-10-29 10:54:53.907 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=306 ttl=63 time=0.906 ms
2015-10-29 10:54:54.409 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=307 ttl=63 time=0.949 ms
2015-10-29 10:54:54.909 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=308 ttl=63 time=0.882 ms
2015-10-29 10:54:55.411 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=309 ttl=63 time=0.961 ms
2015-10-29 10:54:55.911 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=310 ttl=63 time=0.916 ms
2015-10-29 10:54:56.412 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=311 ttl=63 time=0.990 ms
2015-10-29 10:54:56.912 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=312 ttl=63 time=0.920 ms
2015-10-29 10:54:57.413 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=313 ttl=63 time=0.948 ms
2015-10-29 10:54:57.914 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=314 ttl=63 time=0.859 ms
2015-10-29 10:54:58.415 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=315 ttl=63 time=1.22 ms
2015-10-29 10:54:58.916 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=316 ttl=63 time=1.04 ms
2015-10-29 10:54:59.417 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=317 ttl=63 time=1.03 ms
2015-10-29 10:54:59.919 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=318 ttl=63 time=0.858 ms
2015-10-29 10:55:00.418 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=319 ttl=63 time=1.02 ms
2015-10-29 10:55:00.920 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=320 ttl=63 time=1.84 ms
2015-10-29 10:55:01.422 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=321 ttl=63 time=2.85 ms
2015-10-29 10:55:01.920 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=322 ttl=63 time=0.966 ms
2015-10-29 10:55:02.422 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=323 ttl=63 time=1.07 ms
2015-10-29 10:55:02.924 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=324 ttl=63 time=0.983 ms
2015-10-29 10:55:03.430 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=325 ttl=63 time=0.984 ms
2015-10-29 10:55:03.928 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=326 ttl=63 time=0.954 ms
2015-10-29 10:55:04.433 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=327 ttl=63 time=1.01 ms
2015-10-29 10:55:04.939 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=328 ttl=63 time=2.22 ms
2015-10-29 10:55:05.434 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=329 ttl=63 time=0.987 ms
2015-10-29 10:55:05.942 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=330 ttl=63 time=0.958 ms
2015-10-29 10:55:06.439 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=331 ttl=63 time=1.02 ms
2015-10-29 10:55:06.942 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=332 ttl=63 time=1.02 ms
2015-10-29 10:55:07.446 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=333 ttl=63 time=1.00 ms
2015-10-29 10:55:07.952 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=334 ttl=63 time=1.00 ms
2015-10-29 10:55:08.449 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=335 ttl=63 time=0.996 ms
2015-10-29 10:55:08.960 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=336 ttl=63 time=1.19 ms
2015-10-29 10:55:09.454 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=337 ttl=63 time=0.870 ms
2015-10-29 10:55:09.952 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=338 ttl=63 time=1.05 ms
2015-10-29 10:55:10.454 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=339 ttl=63 time=1.07 ms
2015-10-29 10:55:10.953 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=340 ttl=63 time=0.936 ms
2015-10-29 10:55:11.458 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=341 ttl=63 time=0.888 ms
2015-10-29 10:55:11.954 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=342 ttl=63 time=0.978 ms
2015-10-29 10:55:12.455 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=343 ttl=63 time=0.924 ms
2015-10-29 10:55:12.956 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=344 ttl=63 time=0.884 ms
2015-10-29 10:55:13.458 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=345 ttl=63 time=0.950 ms
2015-10-29 10:55:13.958 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=346 ttl=63 time=0.960 ms
2015-10-29 10:55:14.459 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=347 ttl=63 time=0.983 ms
2015-10-29 10:55:14.959 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=348 ttl=63 time=0.793 ms
2015-10-29 10:55:15.460 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=349 ttl=63 time=0.975 ms
2015-10-29 10:55:15.961 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=350 ttl=63 time=0.900 ms
2015-10-29 10:55:16.462 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=351 ttl=63 time=1.76 ms
2015-10-29 10:55:16.962 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=352 ttl=63 time=0.974 ms
2015-10-29 10:55:17.463 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=353 ttl=63 time=0.898 ms
2015-10-29 10:55:17.963 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=354 ttl=63 time=0.959 ms
2015-10-29 10:55:18.466 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=355 ttl=63 time=2.22 ms
2015-10-29 10:55:18.966 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=356 ttl=63 time=0.981 ms
2015-10-29 10:55:19.474 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=357 ttl=63 time=0.946 ms
2015-10-29 10:55:19.969 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=358 ttl=63 time=2.86 ms
2015-10-29 10:55:20.469 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=359 ttl=63 time=1.60 ms
2015-10-29 10:55:20.969 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=360 ttl=63 time=0.991 ms
2015-10-29 10:55:21.471 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=361 ttl=63 time=0.975 ms
2015-10-29 10:55:22.013 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=362 ttl=63 time=43.2 ms
2015-10-29 10:55:22.472 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=363 ttl=63 time=1.15 ms
2015-10-29 10:55:22.972 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=364 ttl=63 time=0.909 ms
2015-10-29 10:55:23.475 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=365 ttl=63 time=2.69 ms

View File

@ -0,0 +1,399 @@
2015-10-29 10:52:28.336 tcpdump DEBUG Starting tcpdump retrier on interface 'qvo2e6d0f35-cb'
2015-10-29 10:53:04.034 tcpdump DEBUG listening on qvo2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:53:04.043 tcpdump DEBUG 10:53:03.989079 86:a8:a7:5b:be:20 > 33:33:ff:5b:be:20, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff5b:be20: ICMP6, neighbor solicitation, who has fe80::84a8:a7ff:fe5b:be20, length 24
2015-10-29 10:53:04.214 tcpdump DEBUG 10:53:04.196977 86:a8:a7:5b:be:20 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:04.321 tcpdump DEBUG 10:53:04.303974 16:41:06:5e:22:39 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:04.711 tcpdump DEBUG 10:53:04.704998 16:41:06:5e:22:39 > 33:33:ff:5e:22:39, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff5e:2239: ICMP6, neighbor solicitation, who has fe80::1441:6ff:fe5e:2239, length 24
2015-10-29 10:53:05.002 tcpdump DEBUG 10:53:04.992760 86:a8:a7:5b:be:20 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::84a8:a7ff:fe5b:be20 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:05.032 tcpdump DEBUG 10:53:04.992894 86:a8:a7:5b:be:20 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::84a8:a7ff:fe5b:be20 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:05.696 tcpdump DEBUG 10:53:05.690935 86:a8:a7:5b:be:20 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::84a8:a7ff:fe5b:be20 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:05.737 tcpdump DEBUG 10:53:05.727712 ea:dd:82:25:08:44 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:05.742 tcpdump DEBUG 10:53:05.728613 16:41:06:5e:22:39 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::1441:6ff:fe5e:2239 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:05.747 tcpdump DEBUG 10:53:05.728688 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::1441:6ff:fe5e:2239 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:06.064 tcpdump DEBUG 10:53:06.059071 16:41:06:5e:22:39 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::e8dd:82ff:fe25:844 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:06.075 tcpdump DEBUG 10:53:06.059152 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::e8dd:82ff:fe25:844 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:06.223 tcpdump DEBUG 10:53:06.208979 16:41:06:5e:22:39 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::1441:6ff:fe5e:2239 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:06.700 tcpdump DEBUG 10:53:06.688969 16:41:06:5e:22:39 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::e8dd:82ff:fe25:844 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:09.018 tcpdump DEBUG 10:53:09.006974 86:a8:a7:5b:be:20 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::84a8:a7ff:fe5b:be20 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:09.768 tcpdump DEBUG 10:53:09.742960 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::1441:6ff:fe5e:2239 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:10.082 tcpdump DEBUG 10:53:10.062986 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::e8dd:82ff:fe25:844 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:12.689 tcpdump DEBUG 10:53:12.678098 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:12.837 tcpdump DEBUG 10:53:12.828194 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:13.021 tcpdump DEBUG 10:53:13.014954 86:a8:a7:5b:be:20 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::84a8:a7ff:fe5b:be20 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:13.087 tcpdump DEBUG 10:53:13.078094 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:13.435 tcpdump DEBUG 10:53:13.429176 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:13.758 tcpdump DEBUG 10:53:13.750982 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::1441:6ff:fe5e:2239 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:14.081 tcpdump DEBUG 10:53:14.071018 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::e8dd:82ff:fe25:844 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:45.086 tcpdump DEBUG 10:53:45.076154 fa:16:3e:c5:24:11 > Broadcast, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:45.091 tcpdump DEBUG 10:53:45.077390 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:53:45.580 tcpdump DEBUG 10:53:45.575894 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 170, length 64
2015-10-29 10:53:45.585 tcpdump DEBUG 10:53:45.576596 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 170, length 64
2015-10-29 10:53:45.720 tcpdump DEBUG 10:53:45.712059 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 170, length 64
2015-10-29 10:53:45.725 tcpdump DEBUG 10:53:45.712623 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 170, length 64
2015-10-29 10:53:46.082 tcpdump DEBUG 10:53:46.076557 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 171, length 64
2015-10-29 10:53:46.086 tcpdump DEBUG 10:53:46.077129 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 171, length 64
2015-10-29 10:53:46.219 tcpdump DEBUG 10:53:46.212954 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 171, length 64
2015-10-29 10:53:46.224 tcpdump DEBUG 10:53:46.213556 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 171, length 64
2015-10-29 10:53:46.582 tcpdump DEBUG 10:53:46.577299 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 172, length 64
2015-10-29 10:53:46.586 tcpdump DEBUG 10:53:46.577919 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 172, length 64
2015-10-29 10:53:46.719 tcpdump DEBUG 10:53:46.713662 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 172, length 64
2015-10-29 10:53:46.724 tcpdump DEBUG 10:53:46.714294 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 172, length 64
2015-10-29 10:53:47.084 tcpdump DEBUG 10:53:47.078107 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 173, length 64
2015-10-29 10:53:47.090 tcpdump DEBUG 10:53:47.079592 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 173, length 64
2015-10-29 10:53:47.220 tcpdump DEBUG 10:53:47.214116 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 173, length 64
2015-10-29 10:53:47.225 tcpdump DEBUG 10:53:47.215582 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 173, length 64
2015-10-29 10:53:47.589 tcpdump DEBUG 10:53:47.578721 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 174, length 64
2015-10-29 10:53:47.594 tcpdump DEBUG 10:53:47.582434 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 174, length 64
2015-10-29 10:53:47.721 tcpdump DEBUG 10:53:47.715193 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 174, length 64
2015-10-29 10:53:47.725 tcpdump DEBUG 10:53:47.715685 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 174, length 64
2015-10-29 10:53:48.085 tcpdump DEBUG 10:53:48.079546 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 175, length 64
2015-10-29 10:53:48.090 tcpdump DEBUG 10:53:48.080076 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 175, length 64
2015-10-29 10:53:48.222 tcpdump DEBUG 10:53:48.216118 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 175, length 64
2015-10-29 10:53:48.227 tcpdump DEBUG 10:53:48.216600 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 175, length 64
2015-10-29 10:53:48.586 tcpdump DEBUG 10:53:48.580256 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 176, length 64
2015-10-29 10:53:48.591 tcpdump DEBUG 10:53:48.580707 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 176, length 64
2015-10-29 10:53:48.724 tcpdump DEBUG 10:53:48.717527 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 176, length 64
2015-10-29 10:53:48.728 tcpdump DEBUG 10:53:48.718115 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 176, length 64
2015-10-29 10:53:49.092 tcpdump DEBUG 10:53:49.080624 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 177, length 64
2015-10-29 10:53:49.096 tcpdump DEBUG 10:53:49.081218 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 177, length 64
2015-10-29 10:53:49.225 tcpdump DEBUG 10:53:49.218396 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 177, length 64
2015-10-29 10:53:49.229 tcpdump DEBUG 10:53:49.219170 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 177, length 64
2015-10-29 10:53:49.588 tcpdump DEBUG 10:53:49.582228 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 178, length 64
2015-10-29 10:53:49.592 tcpdump DEBUG 10:53:49.582819 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 178, length 64
2015-10-29 10:53:49.726 tcpdump DEBUG 10:53:49.719066 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 178, length 64
2015-10-29 10:53:49.731 tcpdump DEBUG 10:53:49.719826 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 178, length 64
2015-10-29 10:53:50.088 tcpdump DEBUG 10:53:50.082632 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 179, length 64
2015-10-29 10:53:50.094 tcpdump DEBUG 10:53:50.083216 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 179, length 64
2015-10-29 10:53:50.226 tcpdump DEBUG 10:53:50.220042 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 179, length 64
2015-10-29 10:53:50.231 tcpdump DEBUG 10:53:50.221444 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 179, length 64
2015-10-29 10:53:50.582 tcpdump DEBUG 10:53:50.576735 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:53:50.588 tcpdump DEBUG 10:53:50.577261 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:53:50.594 tcpdump DEBUG 10:53:50.583405 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 180, length 64
2015-10-29 10:53:50.599 tcpdump DEBUG 10:53:50.585567 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 180, length 64
2015-10-29 10:53:50.730 tcpdump DEBUG 10:53:50.720653 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 180, length 64
2015-10-29 10:53:50.734 tcpdump DEBUG 10:53:50.721402 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 180, length 64
2015-10-29 10:53:51.092 tcpdump DEBUG 10:53:51.084703 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 181, length 64
2015-10-29 10:53:51.098 tcpdump DEBUG 10:53:51.086130 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 181, length 64
2015-10-29 10:53:51.239 tcpdump DEBUG 10:53:51.229145 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 181, length 64
2015-10-29 10:53:51.245 tcpdump DEBUG 10:53:51.230670 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 181, length 64
2015-10-29 10:53:51.596 tcpdump DEBUG 10:53:51.590783 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 182, length 64
2015-10-29 10:53:51.601 tcpdump DEBUG 10:53:51.592588 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 182, length 64
2015-10-29 10:53:51.736 tcpdump DEBUG 10:53:51.729943 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 182, length 64
2015-10-29 10:53:51.741 tcpdump DEBUG 10:53:51.732561 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 182, length 64
2015-10-29 10:53:52.097 tcpdump DEBUG 10:53:52.091669 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 183, length 64
2015-10-29 10:53:52.102 tcpdump DEBUG 10:53:52.094123 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 183, length 64
2015-10-29 10:53:52.235 tcpdump DEBUG 10:53:52.230591 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 183, length 64
2015-10-29 10:53:52.240 tcpdump DEBUG 10:53:52.231371 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 183, length 64
2015-10-29 10:53:52.597 tcpdump DEBUG 10:53:52.592294 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 184, length 64
2015-10-29 10:53:52.601 tcpdump DEBUG 10:53:52.592755 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 184, length 64
2015-10-29 10:53:52.738 tcpdump DEBUG 10:53:52.731397 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 184, length 64
2015-10-29 10:53:52.743 tcpdump DEBUG 10:53:52.732056 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 184, length 64
2015-10-29 10:53:53.099 tcpdump DEBUG 10:53:53.092843 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 185, length 64
2015-10-29 10:53:53.104 tcpdump DEBUG 10:53:53.093542 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 185, length 64
2015-10-29 10:53:53.240 tcpdump DEBUG 10:53:53.232078 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 185, length 64
2015-10-29 10:53:53.246 tcpdump DEBUG 10:53:53.233567 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 185, length 64
2015-10-29 10:53:53.602 tcpdump DEBUG 10:53:53.597034 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 186, length 64
2015-10-29 10:53:53.607 tcpdump DEBUG 10:53:53.597491 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 186, length 64
2015-10-29 10:53:53.741 tcpdump DEBUG 10:53:53.733627 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 186, length 64
2015-10-29 10:53:53.745 tcpdump DEBUG 10:53:53.734422 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 186, length 64
2015-10-29 10:53:54.102 tcpdump DEBUG 10:53:54.097693 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 187, length 64
2015-10-29 10:53:54.107 tcpdump DEBUG 10:53:54.099142 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 187, length 64
2015-10-29 10:53:54.242 tcpdump DEBUG 10:53:54.234477 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 187, length 64
2015-10-29 10:53:54.246 tcpdump DEBUG 10:53:54.235410 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 187, length 64
2015-10-29 10:53:54.608 tcpdump DEBUG 10:53:54.598504 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 188, length 64
2015-10-29 10:53:54.613 tcpdump DEBUG 10:53:54.599151 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 188, length 64
2015-10-29 10:53:54.741 tcpdump DEBUG 10:53:54.735315 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 188, length 64
2015-10-29 10:53:54.746 tcpdump DEBUG 10:53:54.736398 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 188, length 64
2015-10-29 10:53:55.110 tcpdump DEBUG 10:53:55.099293 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 189, length 64
2015-10-29 10:53:55.118 tcpdump DEBUG 10:53:55.104467 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 189, length 64
2015-10-29 10:53:55.247 tcpdump DEBUG 10:53:55.236290 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 189, length 64
2015-10-29 10:53:55.252 tcpdump DEBUG 10:53:55.237228 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 189, length 64
2015-10-29 10:53:55.606 tcpdump DEBUG 10:53:55.600687 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 190, length 64
2015-10-29 10:53:55.611 tcpdump DEBUG 10:53:55.601212 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 190, length 64
2015-10-29 10:53:55.750 tcpdump DEBUG 10:53:55.738408 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 190, length 64
2015-10-29 10:53:55.755 tcpdump DEBUG 10:53:55.741082 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 190, length 64
2015-10-29 10:53:56.110 tcpdump DEBUG 10:53:56.101330 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 191, length 64
2015-10-29 10:53:56.115 tcpdump DEBUG 10:53:56.101960 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 191, length 64
2015-10-29 10:53:56.252 tcpdump DEBUG 10:53:56.238023 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 191, length 64
2015-10-29 10:53:56.257 tcpdump DEBUG 10:53:56.239246 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 191, length 64
2015-10-29 10:53:56.607 tcpdump DEBUG 10:53:56.602125 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 192, length 64
2015-10-29 10:53:56.612 tcpdump DEBUG 10:53:56.602597 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 192, length 64
2015-10-29 10:53:56.745 tcpdump DEBUG 10:53:56.739485 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 192, length 64
2015-10-29 10:53:56.749 tcpdump DEBUG 10:53:56.740125 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 192, length 64
2015-10-29 10:53:57.112 tcpdump DEBUG 10:53:57.106327 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 193, length 64
2015-10-29 10:53:57.117 tcpdump DEBUG 10:53:57.107234 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 193, length 64
2015-10-29 10:53:57.254 tcpdump DEBUG 10:53:57.241112 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 193, length 64
2015-10-29 10:53:57.258 tcpdump DEBUG 10:53:57.242449 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 193, length 64
2015-10-29 10:53:57.613 tcpdump DEBUG 10:53:57.607351 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 194, length 64
2015-10-29 10:53:57.619 tcpdump DEBUG 10:53:57.608073 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 194, length 64
2015-10-29 10:53:57.748 tcpdump DEBUG 10:53:57.742561 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 194, length 64
2015-10-29 10:53:57.754 tcpdump DEBUG 10:53:57.743143 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 194, length 64
2015-10-29 10:53:58.114 tcpdump DEBUG 10:53:58.107786 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 195, length 64
2015-10-29 10:53:58.124 tcpdump DEBUG 10:53:58.108321 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 195, length 64
2015-10-29 10:53:58.249 tcpdump DEBUG 10:53:58.243065 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 195, length 64
2015-10-29 10:53:58.255 tcpdump DEBUG 10:53:58.243664 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 195, length 64
2015-10-29 10:53:58.618 tcpdump DEBUG 10:53:58.612239 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 196, length 64
2015-10-29 10:53:58.627 tcpdump DEBUG 10:53:58.612833 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 196, length 64
2015-10-29 10:53:58.753 tcpdump DEBUG 10:53:58.744043 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 196, length 64
2015-10-29 10:53:58.759 tcpdump DEBUG 10:53:58.744824 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 196, length 64
2015-10-29 10:53:59.120 tcpdump DEBUG 10:53:59.113060 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 197, length 64
2015-10-29 10:53:59.131 tcpdump DEBUG 10:53:59.114375 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 197, length 64
2015-10-29 10:53:59.253 tcpdump DEBUG 10:53:59.244697 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 197, length 64
2015-10-29 10:53:59.264 tcpdump DEBUG 10:53:59.245297 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 197, length 64
2015-10-29 10:53:59.638 tcpdump DEBUG 10:53:59.614519 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 198, length 64
2015-10-29 10:53:59.649 tcpdump DEBUG 10:53:59.616363 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 198, length 64
2015-10-29 10:53:59.764 tcpdump DEBUG 10:53:59.747098 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 198, length 64
2015-10-29 10:53:59.774 tcpdump DEBUG 10:53:59.747704 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 198, length 64
2015-10-29 10:54:00.124 tcpdump DEBUG 10:54:00.115516 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 199, length 64
2015-10-29 10:54:00.132 tcpdump DEBUG 10:54:00.116093 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 199, length 64
2015-10-29 10:54:00.256 tcpdump DEBUG 10:54:00.247671 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 199, length 64
2015-10-29 10:54:00.261 tcpdump DEBUG 10:54:00.248254 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 199, length 64
2015-10-29 10:54:00.624 tcpdump DEBUG 10:54:00.616348 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 200, length 64
2015-10-29 10:54:00.636 tcpdump DEBUG 10:54:00.619199 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 200, length 64
2015-10-29 10:54:00.757 tcpdump DEBUG 10:54:00.748091 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 200, length 64
2015-10-29 10:54:00.763 tcpdump DEBUG 10:54:00.749609 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 200, length 64
2015-10-29 10:54:01.129 tcpdump DEBUG 10:54:01.117354 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 201, length 64
2015-10-29 10:54:01.139 tcpdump DEBUG 10:54:01.118374 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 201, length 64
2015-10-29 10:54:01.259 tcpdump DEBUG 10:54:01.248721 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 201, length 64
2015-10-29 10:54:01.270 tcpdump DEBUG 10:54:01.251381 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 201, length 64
2015-10-29 10:54:01.625 tcpdump DEBUG 10:54:01.618467 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 202, length 64
2015-10-29 10:54:01.635 tcpdump DEBUG 10:54:01.619351 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 202, length 64
2015-10-29 10:54:01.767 tcpdump DEBUG 10:54:01.749355 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 202, length 64
2015-10-29 10:54:01.783 tcpdump DEBUG 10:54:01.752273 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 202, length 64
2015-10-29 10:54:02.125 tcpdump DEBUG 10:54:02.119472 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 203, length 64
2015-10-29 10:54:02.139 tcpdump DEBUG 10:54:02.120294 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 203, length 64
2015-10-29 10:54:02.257 tcpdump DEBUG 10:54:02.251120 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 203, length 64
2015-10-29 10:54:02.273 tcpdump DEBUG 10:54:02.257361 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 203, length 64
2015-10-29 10:54:02.648 tcpdump DEBUG 10:54:02.620480 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 204, length 64
2015-10-29 10:54:02.653 tcpdump DEBUG 10:54:02.621460 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 204, length 64
2015-10-29 10:54:02.766 tcpdump DEBUG 10:54:02.752261 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 204, length 64
2015-10-29 10:54:02.781 tcpdump DEBUG 10:54:02.752951 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 204, length 64
2015-10-29 10:54:03.128 tcpdump DEBUG 10:54:03.121563 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 205, length 64
2015-10-29 10:54:03.134 tcpdump DEBUG 10:54:03.122327 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 205, length 64
2015-10-29 10:54:03.268 tcpdump DEBUG 10:54:03.253109 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 205, length 64
2015-10-29 10:54:03.284 tcpdump DEBUG 10:54:03.256976 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 205, length 64
2015-10-29 10:54:03.639 tcpdump DEBUG 10:54:03.622467 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 206, length 64
2015-10-29 10:54:03.654 tcpdump DEBUG 10:54:03.627730 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 206, length 64
2015-10-29 10:54:03.763 tcpdump DEBUG 10:54:03.755216 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 206, length 64
2015-10-29 10:54:03.776 tcpdump DEBUG 10:54:03.757044 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 206, length 64
2015-10-29 10:54:04.146 tcpdump DEBUG 10:54:04.123914 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 207, length 64
2015-10-29 10:54:04.157 tcpdump DEBUG 10:54:04.127646 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 207, length 64
2015-10-29 10:54:04.286 tcpdump DEBUG 10:54:04.257098 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 207, length 64
2015-10-29 10:54:04.302 tcpdump DEBUG 10:54:04.258551 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 207, length 64
2015-10-29 10:54:04.648 tcpdump DEBUG 10:54:04.624733 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 208, length 64
2015-10-29 10:54:04.654 tcpdump DEBUG 10:54:04.631448 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 208, length 64
2015-10-29 10:54:04.767 tcpdump DEBUG 10:54:04.758204 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 208, length 64
2015-10-29 10:54:04.775 tcpdump DEBUG 10:54:04.761158 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 208, length 64
2015-10-29 10:54:05.137 tcpdump DEBUG 10:54:05.125609 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 209, length 64
2015-10-29 10:54:05.142 tcpdump DEBUG 10:54:05.130147 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 209, length 64
2015-10-29 10:54:05.266 tcpdump DEBUG 10:54:05.259158 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 209, length 64
2015-10-29 10:54:05.281 tcpdump DEBUG 10:54:05.267407 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 209, length 64
2015-10-29 10:54:05.634 tcpdump DEBUG 10:54:05.626281 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 210, length 64
2015-10-29 10:54:05.644 tcpdump DEBUG 10:54:05.627814 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 210, length 64
2015-10-29 10:54:05.771 tcpdump DEBUG 10:54:05.762119 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 210, length 64
2015-10-29 10:54:05.779 tcpdump DEBUG 10:54:05.765131 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 210, length 64
2015-10-29 10:54:06.147 tcpdump DEBUG 10:54:06.127041 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 211, length 64
2015-10-29 10:54:06.163 tcpdump DEBUG 10:54:06.131546 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 211, length 64
2015-10-29 10:54:06.271 tcpdump DEBUG 10:54:06.264229 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 211, length 64
2015-10-29 10:54:06.288 tcpdump DEBUG 10:54:06.266323 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 211, length 64
2015-10-29 10:54:06.641 tcpdump DEBUG 10:54:06.627652 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 212, length 64
2015-10-29 10:54:06.647 tcpdump DEBUG 10:54:06.628248 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 212, length 64
2015-10-29 10:54:06.770 tcpdump DEBUG 10:54:06.765035 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 212, length 64
2015-10-29 10:54:06.779 tcpdump DEBUG 10:54:06.768740 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 212, length 64
2015-10-29 10:54:07.148 tcpdump DEBUG 10:54:07.128306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 213, length 64
2015-10-29 10:54:07.160 tcpdump DEBUG 10:54:07.134837 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 213, length 64
2015-10-29 10:54:07.279 tcpdump DEBUG 10:54:07.267089 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 213, length 64
2015-10-29 10:54:07.292 tcpdump DEBUG 10:54:07.267635 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 213, length 64
2015-10-29 10:54:07.634 tcpdump DEBUG 10:54:07.629007 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 214, length 64
2015-10-29 10:54:07.639 tcpdump DEBUG 10:54:07.629605 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 214, length 64
2015-10-29 10:54:07.779 tcpdump DEBUG 10:54:07.771244 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 214, length 64
2015-10-29 10:54:07.785 tcpdump DEBUG 10:54:07.772143 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 214, length 64
2015-10-29 10:54:08.135 tcpdump DEBUG 10:54:08.129729 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 215, length 64
2015-10-29 10:54:08.140 tcpdump DEBUG 10:54:08.131487 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 215, length 64
2015-10-29 10:54:08.284 tcpdump DEBUG 10:54:08.271954 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 215, length 64
2015-10-29 10:54:08.292 tcpdump DEBUG 10:54:08.272485 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 215, length 64
2015-10-29 10:54:08.635 tcpdump DEBUG 10:54:08.630690 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 216, length 64
2015-10-29 10:54:08.641 tcpdump DEBUG 10:54:08.631990 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 216, length 64
2015-10-29 10:54:08.780 tcpdump DEBUG 10:54:08.773068 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 216, length 64
2015-10-29 10:54:08.786 tcpdump DEBUG 10:54:08.773618 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 216, length 64
2015-10-29 10:54:09.141 tcpdump DEBUG 10:54:09.131813 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 217, length 64
2015-10-29 10:54:09.152 tcpdump DEBUG 10:54:09.134638 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 217, length 64
2015-10-29 10:54:09.279 tcpdump DEBUG 10:54:09.273103 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 217, length 64
2015-10-29 10:54:09.289 tcpdump DEBUG 10:54:09.273786 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 217, length 64
2015-10-29 10:54:09.644 tcpdump DEBUG 10:54:09.637285 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 218, length 64
2015-10-29 10:54:09.651 tcpdump DEBUG 10:54:09.638423 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 218, length 64
2015-10-29 10:54:09.780 tcpdump DEBUG 10:54:09.773878 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 218, length 64
2015-10-29 10:54:09.792 tcpdump DEBUG 10:54:09.776145 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 218, length 64
2015-10-29 10:54:10.144 tcpdump DEBUG 10:54:10.138885 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 219, length 64
2015-10-29 10:54:10.150 tcpdump DEBUG 10:54:10.140491 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 219, length 64
2015-10-29 10:54:10.285 tcpdump DEBUG 10:54:10.275226 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 219, length 64
2015-10-29 10:54:10.290 tcpdump DEBUG 10:54:10.275797 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 219, length 64
2015-10-29 10:54:10.645 tcpdump DEBUG 10:54:10.639720 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 220, length 64
2015-10-29 10:54:10.653 tcpdump DEBUG 10:54:10.640311 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 220, length 64
2015-10-29 10:54:10.784 tcpdump DEBUG 10:54:10.776055 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 220, length 64
2015-10-29 10:54:10.791 tcpdump DEBUG 10:54:10.776715 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 220, length 64
2015-10-29 10:54:11.149 tcpdump DEBUG 10:54:11.140427 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 221, length 64
2015-10-29 10:54:11.155 tcpdump DEBUG 10:54:11.141437 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 221, length 64
2015-10-29 10:54:11.285 tcpdump DEBUG 10:54:11.276351 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 221, length 64
2015-10-29 10:54:11.293 tcpdump DEBUG 10:54:11.277374 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 221, length 64
2015-10-29 10:54:11.648 tcpdump DEBUG 10:54:11.641567 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 222, length 64
2015-10-29 10:54:11.653 tcpdump DEBUG 10:54:11.644345 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 222, length 64
2015-10-29 10:54:11.783 tcpdump DEBUG 10:54:11.777276 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 222, length 64
2015-10-29 10:54:11.788 tcpdump DEBUG 10:54:11.777920 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 222, length 64
2015-10-29 10:54:12.148 tcpdump DEBUG 10:54:12.142422 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 223, length 64
2015-10-29 10:54:12.157 tcpdump DEBUG 10:54:12.143271 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 223, length 64
2015-10-29 10:54:12.292 tcpdump DEBUG 10:54:12.278161 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 223, length 64
2015-10-29 10:54:12.297 tcpdump DEBUG 10:54:12.278715 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 223, length 64
2015-10-29 10:54:12.650 tcpdump DEBUG 10:54:12.643407 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 224, length 64
2015-10-29 10:54:12.662 tcpdump DEBUG 10:54:12.644443 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 224, length 64
2015-10-29 10:54:12.788 tcpdump DEBUG 10:54:12.779038 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 224, length 64
2015-10-29 10:54:12.794 tcpdump DEBUG 10:54:12.779649 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 224, length 64
2015-10-29 10:54:13.150 tcpdump DEBUG 10:54:13.144570 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 225, length 64
2015-10-29 10:54:13.158 tcpdump DEBUG 10:54:13.145330 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 225, length 64
2015-10-29 10:54:13.292 tcpdump DEBUG 10:54:13.279909 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 225, length 64
2015-10-29 10:54:13.299 tcpdump DEBUG 10:54:13.281672 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 225, length 64
2015-10-29 10:54:13.650 tcpdump DEBUG 10:54:13.645458 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 226, length 64
2015-10-29 10:54:13.656 tcpdump DEBUG 10:54:13.646140 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 226, length 64
2015-10-29 10:54:13.786 tcpdump DEBUG 10:54:13.780859 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 226, length 64
2015-10-29 10:54:13.792 tcpdump DEBUG 10:54:13.782589 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 226, length 64
2015-10-29 10:54:14.156 tcpdump DEBUG 10:54:14.145762 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 227, length 64
2015-10-29 10:54:14.162 tcpdump DEBUG 10:54:14.146295 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 227, length 64
2015-10-29 10:54:14.291 tcpdump DEBUG 10:54:14.282103 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 227, length 64
2015-10-29 10:54:14.297 tcpdump DEBUG 10:54:14.282772 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 227, length 64
2015-10-29 10:54:14.651 tcpdump DEBUG 10:54:14.646485 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 228, length 64
2015-10-29 10:54:14.656 tcpdump DEBUG 10:54:14.647422 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 228, length 64
2015-10-29 10:54:14.788 tcpdump DEBUG 10:54:14.782819 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 228, length 64
2015-10-29 10:54:14.795 tcpdump DEBUG 10:54:14.783335 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 228, length 64
2015-10-29 10:54:15.154 tcpdump DEBUG 10:54:15.147588 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 229, length 64
2015-10-29 10:54:15.163 tcpdump DEBUG 10:54:15.148203 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 229, length 64
2015-10-29 10:54:15.289 tcpdump DEBUG 10:54:15.283111 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 229, length 64
2015-10-29 10:54:15.304 tcpdump DEBUG 10:54:15.284956 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 229, length 64
2015-10-29 10:54:15.653 tcpdump DEBUG 10:54:15.648284 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 230, length 64
2015-10-29 10:54:15.663 tcpdump DEBUG 10:54:15.648900 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 230, length 64
2015-10-29 10:54:15.790 tcpdump DEBUG 10:54:15.784145 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 230, length 64
2015-10-29 10:54:15.800 tcpdump DEBUG 10:54:15.785742 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 230, length 64
2015-10-29 10:54:16.163 tcpdump DEBUG 10:54:16.148746 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 231, length 64
2015-10-29 10:54:16.170 tcpdump DEBUG 10:54:16.149439 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 231, length 64
2015-10-29 10:54:16.296 tcpdump DEBUG 10:54:16.284801 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 231, length 64
2015-10-29 10:54:16.300 tcpdump DEBUG 10:54:16.285498 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 231, length 64
2015-10-29 10:54:16.657 tcpdump DEBUG 10:54:16.649668 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 232, length 64
2015-10-29 10:54:16.662 tcpdump DEBUG 10:54:16.650267 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 232, length 64
2015-10-29 10:54:16.795 tcpdump DEBUG 10:54:16.786002 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 232, length 64
2015-10-29 10:54:16.801 tcpdump DEBUG 10:54:16.786602 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 232, length 64
2015-10-29 10:54:17.155 tcpdump DEBUG 10:54:17.150292 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 233, length 64
2015-10-29 10:54:17.163 tcpdump DEBUG 10:54:17.151514 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 233, length 64
2015-10-29 10:54:17.296 tcpdump DEBUG 10:54:17.286855 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 233, length 64
2015-10-29 10:54:17.310 tcpdump DEBUG 10:54:17.291400 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 233, length 64
2015-10-29 10:54:17.658 tcpdump DEBUG 10:54:17.651598 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 234, length 64
2015-10-29 10:54:17.670 tcpdump DEBUG 10:54:17.652255 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 234, length 64
2015-10-29 10:54:17.797 tcpdump DEBUG 10:54:17.787757 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 234, length 64
2015-10-29 10:54:17.803 tcpdump DEBUG 10:54:17.788593 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 234, length 64
2015-10-29 10:54:18.157 tcpdump DEBUG 10:54:18.152702 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 235, length 64
2015-10-29 10:54:18.161 tcpdump DEBUG 10:54:18.153337 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 235, length 64
2015-10-29 10:54:18.296 tcpdump DEBUG 10:54:18.288582 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 235, length 64
2015-10-29 10:54:18.301 tcpdump DEBUG 10:54:18.289358 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 235, length 64
2015-10-29 10:54:18.659 tcpdump DEBUG 10:54:18.653374 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 236, length 64
2015-10-29 10:54:18.664 tcpdump DEBUG 10:54:18.654267 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 236, length 64
2015-10-29 10:54:18.794 tcpdump DEBUG 10:54:18.789434 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 236, length 64
2015-10-29 10:54:18.800 tcpdump DEBUG 10:54:18.789978 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 236, length 64
2015-10-29 10:54:19.159 tcpdump DEBUG 10:54:19.154385 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 237, length 64
2015-10-29 10:54:19.169 tcpdump DEBUG 10:54:19.156219 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 237, length 64
2015-10-29 10:54:19.295 tcpdump DEBUG 10:54:19.290059 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 237, length 64
2015-10-29 10:54:19.301 tcpdump DEBUG 10:54:19.292373 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 237, length 64
2015-10-29 10:54:19.662 tcpdump DEBUG 10:54:19.655769 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 238, length 64
2015-10-29 10:54:19.670 tcpdump DEBUG 10:54:19.657539 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 238, length 64
2015-10-29 10:54:19.799 tcpdump DEBUG 10:54:19.791009 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 238, length 64
2015-10-29 10:54:19.804 tcpdump DEBUG 10:54:19.792491 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 238, length 64
2015-10-29 10:54:20.163 tcpdump DEBUG 10:54:20.156719 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 239, length 64
2015-10-29 10:54:20.168 tcpdump DEBUG 10:54:20.157272 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 239, length 64
2015-10-29 10:54:20.297 tcpdump DEBUG 10:54:20.291393 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:54:20.302 tcpdump DEBUG 10:54:20.292070 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:54:20.307 tcpdump DEBUG 10:54:20.292478 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 239, length 64
2015-10-29 10:54:20.311 tcpdump DEBUG 10:54:20.293180 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 239, length 64
2015-10-29 10:54:20.662 tcpdump DEBUG 10:54:20.657517 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 240, length 64
2015-10-29 10:54:20.667 tcpdump DEBUG 10:54:20.658139 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 240, length 64
2015-10-29 10:54:20.798 tcpdump DEBUG 10:54:20.793673 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 240, length 64
2015-10-29 10:54:20.803 tcpdump DEBUG 10:54:20.794261 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 240, length 64
2015-10-29 10:54:21.167 tcpdump DEBUG 10:54:21.158260 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 241, length 64
2015-10-29 10:54:21.173 tcpdump DEBUG 10:54:21.158853 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 241, length 64
2015-10-29 10:54:21.302 tcpdump DEBUG 10:54:21.294055 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 241, length 64
2015-10-29 10:54:21.310 tcpdump DEBUG 10:54:21.294668 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 241, length 64
2015-10-29 10:54:21.679 tcpdump DEBUG 10:54:21.659015 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 242, length 64
2015-10-29 10:54:21.684 tcpdump DEBUG 10:54:21.663410 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 242, length 64
2015-10-29 10:54:21.814 tcpdump DEBUG 10:54:21.794777 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 242, length 64
2015-10-29 10:54:21.831 tcpdump DEBUG 10:54:21.800607 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 242, length 64
2015-10-29 10:54:22.167 tcpdump DEBUG 10:54:22.160582 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 243, length 64
2015-10-29 10:54:22.172 tcpdump DEBUG 10:54:22.163268 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 243, length 64
2015-10-29 10:54:22.305 tcpdump DEBUG 10:54:22.295804 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 243, length 64
2015-10-29 10:54:22.311 tcpdump DEBUG 10:54:22.296352 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 243, length 64
2015-10-29 10:54:22.668 tcpdump DEBUG 10:54:22.661465 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 244, length 64
2015-10-29 10:54:22.672 tcpdump DEBUG 10:54:22.662419 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 244, length 64
2015-10-29 10:54:22.806 tcpdump DEBUG 10:54:22.797271 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 244, length 64
2015-10-29 10:54:22.810 tcpdump DEBUG 10:54:22.797781 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 244, length 64
2015-10-29 10:54:23.173 tcpdump DEBUG 10:54:23.162840 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 245, length 64
2015-10-29 10:54:23.183 tcpdump DEBUG 10:54:23.164356 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 245, length 64
2015-10-29 10:54:23.316 tcpdump DEBUG 10:54:23.301510 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 245, length 64
2015-10-29 10:54:23.331 tcpdump DEBUG 10:54:23.304411 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 245, length 64
2015-10-29 10:54:23.671 tcpdump DEBUG 10:54:23.664346 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 246, length 64
2015-10-29 10:54:23.684 tcpdump DEBUG 10:54:23.669749 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 246, length 64
2015-10-29 10:54:23.816 tcpdump DEBUG 10:54:23.802174 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 246, length 64
2015-10-29 10:54:23.830 tcpdump DEBUG 10:54:23.806662 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 246, length 64
2015-10-29 10:54:24.179 tcpdump DEBUG 10:54:24.165059 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 247, length 64
2015-10-29 10:54:24.207 tcpdump DEBUG 10:54:24.166521 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 247, length 64
2015-10-29 10:54:24.318 tcpdump DEBUG 10:54:24.304400 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 247, length 64
2015-10-29 10:54:24.339 tcpdump DEBUG 10:54:24.305533 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 247, length 64
2015-10-29 10:54:24.674 tcpdump DEBUG 10:54:24.665771 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 248, length 64
2015-10-29 10:54:24.680 tcpdump DEBUG 10:54:24.667761 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 248, length 64
2015-10-29 10:54:24.822 tcpdump DEBUG 10:54:24.805184 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 248, length 64
2015-10-29 10:54:24.827 tcpdump DEBUG 10:54:24.808762 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 248, length 64
2015-10-29 10:54:25.189 tcpdump DEBUG 10:54:25.166459 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 249, length 64
2015-10-29 10:54:25.203 tcpdump DEBUG 10:54:25.167480 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 249, length 64
2015-10-29 10:54:25.317 tcpdump DEBUG 10:54:25.309190 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 249, length 64
2015-10-29 10:54:25.329 tcpdump DEBUG 10:54:25.310567 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 249, length 64
2015-10-29 10:54:25.341 tcpdump DEBUG 10:54:25.314821 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:54:25.355 tcpdump DEBUG 10:54:25.318313 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:54:25.681 tcpdump DEBUG 10:54:25.667714 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 250, length 64
2015-10-29 10:54:25.695 tcpdump DEBUG 10:54:25.668834 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 250, length 64
2015-10-29 10:54:25.823 tcpdump DEBUG 10:54:25.814116 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 250, length 64
2015-10-29 10:54:25.831 tcpdump DEBUG 10:54:25.815098 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 250, length 64
2015-10-29 10:54:26.182 tcpdump DEBUG 10:54:26.168748 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 251, length 64
2015-10-29 10:54:26.197 tcpdump DEBUG 10:54:26.177269 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 251, length 64
2015-10-29 10:54:26.330 tcpdump DEBUG 10:54:26.315277 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 251, length 64
2015-10-29 10:54:26.336 tcpdump DEBUG 10:54:26.316571 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 251, length 64
2015-10-29 10:54:26.678 tcpdump DEBUG 10:54:26.669623 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 252, length 64
2015-10-29 10:54:26.687 tcpdump DEBUG 10:54:26.670386 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 252, length 64
2015-10-29 10:54:26.825 tcpdump DEBUG 10:54:26.817056 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 252, length 64
2015-10-29 10:54:26.834 tcpdump DEBUG 10:54:26.818830 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 252, length 64
2015-10-29 10:54:27.180 tcpdump DEBUG 10:54:27.170641 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 253, length 64
2015-10-29 10:54:27.194 tcpdump DEBUG 10:54:27.177337 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 253, length 64
2015-10-29 10:54:27.329 tcpdump DEBUG 10:54:27.319281 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 253, length 64
2015-10-29 10:54:27.348 tcpdump DEBUG 10:54:27.322446 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 253, length 64
2015-10-29 10:54:27.682 tcpdump DEBUG 10:54:27.671478 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 254, length 64
2015-10-29 10:54:27.828 tcpdump DEBUG 10:54:27.821147 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 254, length 64
2015-10-29 10:54:28.181 tcpdump DEBUG 10:54:28.170688 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 255, length 64
2015-10-29 10:54:28.331 tcpdump DEBUG 10:54:28.323262 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 255, length 64
2015-10-29 10:54:28.691 tcpdump DEBUG 10:54:28.680750 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 256, length 64
2015-10-29 10:54:28.833 tcpdump DEBUG 10:54:28.824111 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 256, length 64
2015-10-29 10:54:29.194 tcpdump DEBUG 10:54:29.180678 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 257, length 64
2015-10-29 10:54:29.337 tcpdump DEBUG 10:54:29.325584 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 257, length 64
2015-10-29 10:54:29.703 tcpdump DEBUG 10:54:29.690810 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 258, length 64
2015-10-29 10:54:29.842 tcpdump DEBUG 10:54:29.836256 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 258, length 64
2015-10-29 10:54:30.200 tcpdump DEBUG 10:54:30.193348 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 259, length 64
2015-10-29 10:54:30.345 tcpdump DEBUG 10:54:30.337276 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 259, length 64
2015-10-29 10:54:30.565 tcpdump DEBUG 10:54:30.560207 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:30.708 tcpdump DEBUG 10:54:30.703441 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 260, length 64
2015-10-29 10:54:30.851 tcpdump DEBUG 10:54:30.847190 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 260, length 64
2015-10-29 10:54:31.208 tcpdump DEBUG 10:54:31.202656 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 261, length 64
2015-10-29 10:54:31.353 tcpdump DEBUG 10:54:31.348142 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 261, length 64
2015-10-29 10:54:31.717 tcpdump DEBUG 10:54:31.712736 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 262, length 64
2015-10-29 10:54:31.855 tcpdump DEBUG 10:54:31.849122 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 262, length 64
2015-10-29 10:54:32.301 tcpdump DEBUG 10:54:32.294397 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 263, length 64
2015-10-29 10:54:32.353 tcpdump DEBUG 10:54:32.349098 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 263, length 64
2015-10-29 10:54:32.727 tcpdump DEBUG 10:54:32.722742 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 264, length 64
2015-10-29 10:54:32.854 tcpdump DEBUG 10:54:32.849135 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 264, length 64
2015-10-29 10:54:33.228 tcpdump DEBUG 10:54:33.222650 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 265, length 64
2015-10-29 10:54:33.358 tcpdump DEBUG 10:54:33.350145 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 265, length 64
2015-10-29 10:54:33.937 tcpdump DEBUG tcpdump: pcap_loop: The interface went down
2015-10-29 10:54:33.943 tcpdump DEBUG 393 packets captured
2015-10-29 10:54:33.950 tcpdump DEBUG 393 packets received by filter
2015-10-29 10:54:33.955 tcpdump DEBUG 0 packets dropped by kernel

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,365 @@
2015-10-29 10:52:28.332 tcpdump DEBUG Starting tcpdump retrier on interface 'tap2e6d0f35-cb'
2015-10-29 10:53:07.329 tcpdump DEBUG listening on tap2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:53:07.556 tcpdump DEBUG 10:53:07.541005 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:07.646 tcpdump DEBUG 10:53:07.631036 fe:16:3e:50:a3:46 > 33:33:ff:50:a3:46, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff50:a346: ICMP6, neighbor solicitation, who has fe80::fc16:3eff:fe50:a346, length 24
2015-10-29 10:53:08.640 tcpdump DEBUG 10:53:08.633478 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::fc16:3eff:fe50:a346 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:08.651 tcpdump DEBUG 10:53:08.633535 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:09.017 tcpdump DEBUG 10:53:09.007068 86:a8:a7:5b:be:20 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::84a8:a7ff:fe5b:be20 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:09.360 tcpdump DEBUG 10:53:09.350954 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::fc16:3eff:fe50:a346 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:53:10.078 tcpdump DEBUG 10:53:10.062957 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::e8dd:82ff:fe25:844 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:12.646 tcpdump DEBUG 10:53:12.638975 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:12.684 tcpdump DEBUG 10:53:12.678026 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:12.837 tcpdump DEBUG 10:53:12.828141 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:13.021 tcpdump DEBUG 10:53:13.015044 86:a8:a7:5b:be:20 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::84a8:a7ff:fe5b:be20 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:13.089 tcpdump DEBUG 10:53:13.078035 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:13.437 tcpdump DEBUG 10:53:13.429110 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:53:14.084 tcpdump DEBUG 10:53:14.070961 16:41:06:5e:22:39 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::e8dd:82ff:fe25:844 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:16.651 tcpdump DEBUG 10:53:16.646960 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:53:45.089 tcpdump DEBUG 10:53:45.076242 fa:16:3e:c5:24:11 > Broadcast, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:45.095 tcpdump DEBUG 10:53:45.077340 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:53:45.583 tcpdump DEBUG 10:53:45.576016 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 170, length 64
2015-10-29 10:53:45.587 tcpdump DEBUG 10:53:45.576506 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 170, length 64
2015-10-29 10:53:45.718 tcpdump DEBUG 10:53:45.712153 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 170, length 64
2015-10-29 10:53:45.723 tcpdump DEBUG 10:53:45.712521 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 170, length 64
2015-10-29 10:53:46.082 tcpdump DEBUG 10:53:46.076617 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 171, length 64
2015-10-29 10:53:46.086 tcpdump DEBUG 10:53:46.077043 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 171, length 64
2015-10-29 10:53:46.220 tcpdump DEBUG 10:53:46.213029 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 171, length 64
2015-10-29 10:53:46.225 tcpdump DEBUG 10:53:46.213448 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 171, length 64
2015-10-29 10:53:46.582 tcpdump DEBUG 10:53:46.577361 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 172, length 64
2015-10-29 10:53:46.587 tcpdump DEBUG 10:53:46.577798 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 172, length 64
2015-10-29 10:53:46.720 tcpdump DEBUG 10:53:46.713732 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 172, length 64
2015-10-29 10:53:46.725 tcpdump DEBUG 10:53:46.714211 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 172, length 64
2015-10-29 10:53:47.090 tcpdump DEBUG 10:53:47.078200 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 173, length 64
2015-10-29 10:53:47.096 tcpdump DEBUG 10:53:47.079493 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 173, length 64
2015-10-29 10:53:47.229 tcpdump DEBUG 10:53:47.214192 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 173, length 64
2015-10-29 10:53:47.234 tcpdump DEBUG 10:53:47.215498 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 173, length 64
2015-10-29 10:53:47.598 tcpdump DEBUG 10:53:47.578821 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 174, length 64
2015-10-29 10:53:47.602 tcpdump DEBUG 10:53:47.582347 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 174, length 64
2015-10-29 10:53:47.721 tcpdump DEBUG 10:53:47.715260 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 174, length 64
2015-10-29 10:53:47.726 tcpdump DEBUG 10:53:47.715580 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 174, length 64
2015-10-29 10:53:48.085 tcpdump DEBUG 10:53:48.079599 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 175, length 64
2015-10-29 10:53:48.090 tcpdump DEBUG 10:53:48.079992 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 175, length 64
2015-10-29 10:53:48.221 tcpdump DEBUG 10:53:48.216187 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 175, length 64
2015-10-29 10:53:48.226 tcpdump DEBUG 10:53:48.216510 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 175, length 64
2015-10-29 10:53:48.585 tcpdump DEBUG 10:53:48.580314 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 176, length 64
2015-10-29 10:53:48.589 tcpdump DEBUG 10:53:48.580620 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 176, length 64
2015-10-29 10:53:48.722 tcpdump DEBUG 10:53:48.717602 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 176, length 64
2015-10-29 10:53:48.728 tcpdump DEBUG 10:53:48.718026 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 176, length 64
2015-10-29 10:53:49.087 tcpdump DEBUG 10:53:49.080705 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 177, length 64
2015-10-29 10:53:49.099 tcpdump DEBUG 10:53:49.081117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 177, length 64
2015-10-29 10:53:49.231 tcpdump DEBUG 10:53:49.218483 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 177, length 64
2015-10-29 10:53:49.236 tcpdump DEBUG 10:53:49.219065 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 177, length 64
2015-10-29 10:53:49.588 tcpdump DEBUG 10:53:49.582292 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 178, length 64
2015-10-29 10:53:49.594 tcpdump DEBUG 10:53:49.582719 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 178, length 64
2015-10-29 10:53:49.725 tcpdump DEBUG 10:53:49.719146 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 178, length 64
2015-10-29 10:53:49.730 tcpdump DEBUG 10:53:49.719729 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 178, length 64
2015-10-29 10:53:50.089 tcpdump DEBUG 10:53:50.082722 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 179, length 64
2015-10-29 10:53:50.097 tcpdump DEBUG 10:53:50.083115 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 179, length 64
2015-10-29 10:53:50.224 tcpdump DEBUG 10:53:50.220109 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 179, length 64
2015-10-29 10:53:50.229 tcpdump DEBUG 10:53:50.221348 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 179, length 64
2015-10-29 10:53:50.583 tcpdump DEBUG 10:53:50.576682 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:53:50.589 tcpdump DEBUG 10:53:50.577316 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:53:50.594 tcpdump DEBUG 10:53:50.583468 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 180, length 64
2015-10-29 10:53:50.599 tcpdump DEBUG 10:53:50.585477 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 180, length 64
2015-10-29 10:53:50.730 tcpdump DEBUG 10:53:50.720726 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 180, length 64
2015-10-29 10:53:50.735 tcpdump DEBUG 10:53:50.721295 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 180, length 64
2015-10-29 10:53:51.091 tcpdump DEBUG 10:53:51.084777 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 181, length 64
2015-10-29 10:53:51.098 tcpdump DEBUG 10:53:51.086038 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 181, length 64
2015-10-29 10:53:51.235 tcpdump DEBUG 10:53:51.229222 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 181, length 64
2015-10-29 10:53:51.246 tcpdump DEBUG 10:53:51.230561 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 181, length 64
2015-10-29 10:53:51.599 tcpdump DEBUG 10:53:51.590848 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 182, length 64
2015-10-29 10:53:51.603 tcpdump DEBUG 10:53:51.592480 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 182, length 64
2015-10-29 10:53:51.734 tcpdump DEBUG 10:53:51.730029 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 182, length 64
2015-10-29 10:53:51.739 tcpdump DEBUG 10:53:51.732455 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 182, length 64
2015-10-29 10:53:52.096 tcpdump DEBUG 10:53:52.091735 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 183, length 64
2015-10-29 10:53:52.101 tcpdump DEBUG 10:53:52.094022 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 183, length 64
2015-10-29 10:53:52.239 tcpdump DEBUG 10:53:52.230654 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 183, length 64
2015-10-29 10:53:52.243 tcpdump DEBUG 10:53:52.231267 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 183, length 64
2015-10-29 10:53:52.597 tcpdump DEBUG 10:53:52.592351 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 184, length 64
2015-10-29 10:53:52.602 tcpdump DEBUG 10:53:52.592666 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 184, length 64
2015-10-29 10:53:52.738 tcpdump DEBUG 10:53:52.731470 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 184, length 64
2015-10-29 10:53:52.742 tcpdump DEBUG 10:53:52.731960 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 184, length 64
2015-10-29 10:53:53.099 tcpdump DEBUG 10:53:53.092923 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 185, length 64
2015-10-29 10:53:53.105 tcpdump DEBUG 10:53:53.093443 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 185, length 64
2015-10-29 10:53:53.240 tcpdump DEBUG 10:53:53.232144 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 185, length 64
2015-10-29 10:53:53.250 tcpdump DEBUG 10:53:53.233454 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 185, length 64
2015-10-29 10:53:53.601 tcpdump DEBUG 10:53:53.597096 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 186, length 64
2015-10-29 10:53:53.606 tcpdump DEBUG 10:53:53.597407 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 186, length 64
2015-10-29 10:53:53.738 tcpdump DEBUG 10:53:53.733699 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 186, length 64
2015-10-29 10:53:53.742 tcpdump DEBUG 10:53:53.734334 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 186, length 64
2015-10-29 10:53:54.104 tcpdump DEBUG 10:53:54.097780 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 187, length 64
2015-10-29 10:53:54.117 tcpdump DEBUG 10:53:54.099036 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 187, length 64
2015-10-29 10:53:54.240 tcpdump DEBUG 10:53:54.234555 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 187, length 64
2015-10-29 10:53:54.245 tcpdump DEBUG 10:53:54.235305 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 187, length 64
2015-10-29 10:53:54.605 tcpdump DEBUG 10:53:54.598582 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 188, length 64
2015-10-29 10:53:54.615 tcpdump DEBUG 10:53:54.599065 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 188, length 64
2015-10-29 10:53:54.740 tcpdump DEBUG 10:53:54.735384 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 188, length 64
2015-10-29 10:53:54.746 tcpdump DEBUG 10:53:54.736311 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 188, length 64
2015-10-29 10:53:55.108 tcpdump DEBUG 10:53:55.099409 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 189, length 64
2015-10-29 10:53:55.119 tcpdump DEBUG 10:53:55.104348 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 189, length 64
2015-10-29 10:53:55.244 tcpdump DEBUG 10:53:55.236364 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 189, length 64
2015-10-29 10:53:55.249 tcpdump DEBUG 10:53:55.237125 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 189, length 64
2015-10-29 10:53:55.605 tcpdump DEBUG 10:53:55.600751 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 190, length 64
2015-10-29 10:53:55.610 tcpdump DEBUG 10:53:55.601111 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 190, length 64
2015-10-29 10:53:55.743 tcpdump DEBUG 10:53:55.738493 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 190, length 64
2015-10-29 10:53:55.748 tcpdump DEBUG 10:53:55.740974 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 190, length 64
2015-10-29 10:53:56.108 tcpdump DEBUG 10:53:56.101416 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 191, length 64
2015-10-29 10:53:56.113 tcpdump DEBUG 10:53:56.101829 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 191, length 64
2015-10-29 10:53:56.246 tcpdump DEBUG 10:53:56.238099 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 191, length 64
2015-10-29 10:53:56.251 tcpdump DEBUG 10:53:56.239136 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 191, length 64
2015-10-29 10:53:56.607 tcpdump DEBUG 10:53:56.602187 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 192, length 64
2015-10-29 10:53:56.611 tcpdump DEBUG 10:53:56.602510 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 192, length 64
2015-10-29 10:53:56.747 tcpdump DEBUG 10:53:56.739555 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 192, length 64
2015-10-29 10:53:56.752 tcpdump DEBUG 10:53:56.740043 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 192, length 64
2015-10-29 10:53:57.112 tcpdump DEBUG 10:53:57.106424 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 193, length 64
2015-10-29 10:53:57.120 tcpdump DEBUG 10:53:57.107137 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 193, length 64
2015-10-29 10:53:57.245 tcpdump DEBUG 10:53:57.241203 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 193, length 64
2015-10-29 10:53:57.251 tcpdump DEBUG 10:53:57.242340 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 193, length 64
2015-10-29 10:53:57.612 tcpdump DEBUG 10:53:57.607415 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 194, length 64
2015-10-29 10:53:57.616 tcpdump DEBUG 10:53:57.607972 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 194, length 64
2015-10-29 10:53:57.748 tcpdump DEBUG 10:53:57.742643 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 194, length 64
2015-10-29 10:53:57.753 tcpdump DEBUG 10:53:57.743059 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 194, length 64
2015-10-29 10:53:58.113 tcpdump DEBUG 10:53:58.107870 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 195, length 64
2015-10-29 10:53:58.117 tcpdump DEBUG 10:53:58.108211 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 195, length 64
2015-10-29 10:53:58.252 tcpdump DEBUG 10:53:58.243136 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 195, length 64
2015-10-29 10:53:58.257 tcpdump DEBUG 10:53:58.243566 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 195, length 64
2015-10-29 10:53:58.619 tcpdump DEBUG 10:53:58.612324 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 196, length 64
2015-10-29 10:53:58.624 tcpdump DEBUG 10:53:58.612728 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 196, length 64
2015-10-29 10:53:58.751 tcpdump DEBUG 10:53:58.744129 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 196, length 64
2015-10-29 10:53:58.759 tcpdump DEBUG 10:53:58.744730 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 196, length 64
2015-10-29 10:53:59.120 tcpdump DEBUG 10:53:59.113149 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 197, length 64
2015-10-29 10:53:59.137 tcpdump DEBUG 10:53:59.114264 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 197, length 64
2015-10-29 10:53:59.254 tcpdump DEBUG 10:53:59.244774 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 197, length 64
2015-10-29 10:53:59.261 tcpdump DEBUG 10:53:59.245208 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 197, length 64
2015-10-29 10:53:59.622 tcpdump DEBUG 10:53:59.614629 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 198, length 64
2015-10-29 10:53:59.630 tcpdump DEBUG 10:53:59.616261 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 198, length 64
2015-10-29 10:53:59.765 tcpdump DEBUG 10:53:59.747184 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 198, length 64
2015-10-29 10:53:59.772 tcpdump DEBUG 10:53:59.747610 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 198, length 64
2015-10-29 10:54:00.128 tcpdump DEBUG 10:54:00.115590 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 199, length 64
2015-10-29 10:54:00.135 tcpdump DEBUG 10:54:00.116003 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 199, length 64
2015-10-29 10:54:00.256 tcpdump DEBUG 10:54:00.247729 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 199, length 64
2015-10-29 10:54:00.261 tcpdump DEBUG 10:54:00.248166 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 199, length 64
2015-10-29 10:54:00.628 tcpdump DEBUG 10:54:00.616438 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 200, length 64
2015-10-29 10:54:00.634 tcpdump DEBUG 10:54:00.619086 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 200, length 64
2015-10-29 10:54:00.764 tcpdump DEBUG 10:54:00.748170 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 200, length 64
2015-10-29 10:54:00.776 tcpdump DEBUG 10:54:00.749507 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 200, length 64
2015-10-29 10:54:01.145 tcpdump DEBUG 10:54:01.117450 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 201, length 64
2015-10-29 10:54:01.151 tcpdump DEBUG 10:54:01.118280 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 201, length 64
2015-10-29 10:54:01.264 tcpdump DEBUG 10:54:01.248796 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 201, length 64
2015-10-29 10:54:01.274 tcpdump DEBUG 10:54:01.251268 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 201, length 64
2015-10-29 10:54:01.625 tcpdump DEBUG 10:54:01.618535 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 202, length 64
2015-10-29 10:54:01.632 tcpdump DEBUG 10:54:01.619250 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 202, length 64
2015-10-29 10:54:01.758 tcpdump DEBUG 10:54:01.749439 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 202, length 64
2015-10-29 10:54:01.769 tcpdump DEBUG 10:54:01.752169 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 202, length 64
2015-10-29 10:54:02.143 tcpdump DEBUG 10:54:02.119568 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 203, length 64
2015-10-29 10:54:02.149 tcpdump DEBUG 10:54:02.120202 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 203, length 64
2015-10-29 10:54:02.260 tcpdump DEBUG 10:54:02.251208 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 203, length 64
2015-10-29 10:54:02.277 tcpdump DEBUG 10:54:02.257254 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 203, length 64
2015-10-29 10:54:02.637 tcpdump DEBUG 10:54:02.620549 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 204, length 64
2015-10-29 10:54:02.651 tcpdump DEBUG 10:54:02.621362 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 204, length 64
2015-10-29 10:54:02.767 tcpdump DEBUG 10:54:02.752349 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 204, length 64
2015-10-29 10:54:02.784 tcpdump DEBUG 10:54:02.752818 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 204, length 64
2015-10-29 10:54:03.141 tcpdump DEBUG 10:54:03.121647 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 205, length 64
2015-10-29 10:54:03.149 tcpdump DEBUG 10:54:03.122227 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 205, length 64
2015-10-29 10:54:03.260 tcpdump DEBUG 10:54:03.253192 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 205, length 64
2015-10-29 10:54:03.291 tcpdump DEBUG 10:54:03.256826 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 205, length 64
2015-10-29 10:54:03.633 tcpdump DEBUG 10:54:03.622567 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 206, length 64
2015-10-29 10:54:03.659 tcpdump DEBUG 10:54:03.627622 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 206, length 64
2015-10-29 10:54:03.773 tcpdump DEBUG 10:54:03.755311 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 206, length 64
2015-10-29 10:54:03.788 tcpdump DEBUG 10:54:03.756943 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 206, length 64
2015-10-29 10:54:04.138 tcpdump DEBUG 10:54:04.124006 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 207, length 64
2015-10-29 10:54:04.155 tcpdump DEBUG 10:54:04.127549 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 207, length 64
2015-10-29 10:54:04.267 tcpdump DEBUG 10:54:04.257176 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 207, length 64
2015-10-29 10:54:04.294 tcpdump DEBUG 10:54:04.258447 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 207, length 64
2015-10-29 10:54:04.640 tcpdump DEBUG 10:54:04.624829 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 208, length 64
2015-10-29 10:54:04.646 tcpdump DEBUG 10:54:04.631342 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 208, length 64
2015-10-29 10:54:04.764 tcpdump DEBUG 10:54:04.758293 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 208, length 64
2015-10-29 10:54:04.771 tcpdump DEBUG 10:54:04.761048 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 208, length 64
2015-10-29 10:54:05.139 tcpdump DEBUG 10:54:05.125697 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 209, length 64
2015-10-29 10:54:05.153 tcpdump DEBUG 10:54:05.130041 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 209, length 64
2015-10-29 10:54:05.293 tcpdump DEBUG 10:54:05.259248 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 209, length 64
2015-10-29 10:54:05.308 tcpdump DEBUG 10:54:05.267304 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 209, length 64
2015-10-29 10:54:05.640 tcpdump DEBUG 10:54:05.626365 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 210, length 64
2015-10-29 10:54:05.645 tcpdump DEBUG 10:54:05.627702 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 210, length 64
2015-10-29 10:54:05.768 tcpdump DEBUG 10:54:05.762211 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 210, length 64
2015-10-29 10:54:05.784 tcpdump DEBUG 10:54:05.765032 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 210, length 64
2015-10-29 10:54:06.144 tcpdump DEBUG 10:54:06.127115 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 211, length 64
2015-10-29 10:54:06.177 tcpdump DEBUG 10:54:06.131441 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 211, length 64
2015-10-29 10:54:06.279 tcpdump DEBUG 10:54:06.264301 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 211, length 64
2015-10-29 10:54:06.287 tcpdump DEBUG 10:54:06.266228 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 211, length 64
2015-10-29 10:54:06.635 tcpdump DEBUG 10:54:06.627729 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 212, length 64
2015-10-29 10:54:06.642 tcpdump DEBUG 10:54:06.628158 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 212, length 64
2015-10-29 10:54:06.777 tcpdump DEBUG 10:54:06.765116 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 212, length 64
2015-10-29 10:54:06.786 tcpdump DEBUG 10:54:06.768632 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 212, length 64
2015-10-29 10:54:07.145 tcpdump DEBUG 10:54:07.128393 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 213, length 64
2015-10-29 10:54:07.155 tcpdump DEBUG 10:54:07.134722 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 213, length 64
2015-10-29 10:54:07.276 tcpdump DEBUG 10:54:07.267166 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 213, length 64
2015-10-29 10:54:07.292 tcpdump DEBUG 10:54:07.267547 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 213, length 64
2015-10-29 10:54:07.635 tcpdump DEBUG 10:54:07.629074 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 214, length 64
2015-10-29 10:54:07.646 tcpdump DEBUG 10:54:07.629492 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 214, length 64
2015-10-29 10:54:07.780 tcpdump DEBUG 10:54:07.771332 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 214, length 64
2015-10-29 10:54:07.789 tcpdump DEBUG 10:54:07.772043 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 214, length 64
2015-10-29 10:54:08.139 tcpdump DEBUG 10:54:08.129834 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 215, length 64
2015-10-29 10:54:08.145 tcpdump DEBUG 10:54:08.131384 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 215, length 64
2015-10-29 10:54:08.277 tcpdump DEBUG 10:54:08.272030 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 215, length 64
2015-10-29 10:54:08.289 tcpdump DEBUG 10:54:08.272395 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 215, length 64
2015-10-29 10:54:08.637 tcpdump DEBUG 10:54:08.630775 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 216, length 64
2015-10-29 10:54:08.643 tcpdump DEBUG 10:54:08.631887 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 216, length 64
2015-10-29 10:54:08.780 tcpdump DEBUG 10:54:08.773167 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 216, length 64
2015-10-29 10:54:08.787 tcpdump DEBUG 10:54:08.773530 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 216, length 64
2015-10-29 10:54:09.146 tcpdump DEBUG 10:54:09.131919 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 217, length 64
2015-10-29 10:54:09.155 tcpdump DEBUG 10:54:09.134530 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 217, length 64
2015-10-29 10:54:09.284 tcpdump DEBUG 10:54:09.273186 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 217, length 64
2015-10-29 10:54:09.288 tcpdump DEBUG 10:54:09.273702 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 217, length 64
2015-10-29 10:54:09.645 tcpdump DEBUG 10:54:09.637374 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 218, length 64
2015-10-29 10:54:09.650 tcpdump DEBUG 10:54:09.638334 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 218, length 64
2015-10-29 10:54:09.784 tcpdump DEBUG 10:54:09.773943 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 218, length 64
2015-10-29 10:54:09.789 tcpdump DEBUG 10:54:09.776046 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 218, length 64
2015-10-29 10:54:10.146 tcpdump DEBUG 10:54:10.138948 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 219, length 64
2015-10-29 10:54:10.152 tcpdump DEBUG 10:54:10.140380 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 219, length 64
2015-10-29 10:54:10.282 tcpdump DEBUG 10:54:10.275295 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 219, length 64
2015-10-29 10:54:10.287 tcpdump DEBUG 10:54:10.275699 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 219, length 64
2015-10-29 10:54:10.649 tcpdump DEBUG 10:54:10.639797 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 220, length 64
2015-10-29 10:54:10.654 tcpdump DEBUG 10:54:10.640206 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 220, length 64
2015-10-29 10:54:10.781 tcpdump DEBUG 10:54:10.776137 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 220, length 64
2015-10-29 10:54:10.786 tcpdump DEBUG 10:54:10.776610 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 220, length 64
2015-10-29 10:54:11.148 tcpdump DEBUG 10:54:11.140513 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 221, length 64
2015-10-29 10:54:11.164 tcpdump DEBUG 10:54:11.141331 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 221, length 64
2015-10-29 10:54:11.288 tcpdump DEBUG 10:54:11.276430 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 221, length 64
2015-10-29 10:54:11.298 tcpdump DEBUG 10:54:11.277266 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 221, length 64
2015-10-29 10:54:11.654 tcpdump DEBUG 10:54:11.641660 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 222, length 64
2015-10-29 10:54:11.660 tcpdump DEBUG 10:54:11.644247 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 222, length 64
2015-10-29 10:54:11.783 tcpdump DEBUG 10:54:11.777356 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 222, length 64
2015-10-29 10:54:11.790 tcpdump DEBUG 10:54:11.777783 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 222, length 64
2015-10-29 10:54:12.148 tcpdump DEBUG 10:54:12.142505 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 223, length 64
2015-10-29 10:54:12.154 tcpdump DEBUG 10:54:12.143172 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 223, length 64
2015-10-29 10:54:12.284 tcpdump DEBUG 10:54:12.278232 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 223, length 64
2015-10-29 10:54:12.289 tcpdump DEBUG 10:54:12.278614 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 223, length 64
2015-10-29 10:54:12.652 tcpdump DEBUG 10:54:12.643499 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 224, length 64
2015-10-29 10:54:12.656 tcpdump DEBUG 10:54:12.644337 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 224, length 64
2015-10-29 10:54:12.785 tcpdump DEBUG 10:54:12.779122 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 224, length 64
2015-10-29 10:54:12.791 tcpdump DEBUG 10:54:12.779542 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 224, length 64
2015-10-29 10:54:13.156 tcpdump DEBUG 10:54:13.144666 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 225, length 64
2015-10-29 10:54:13.164 tcpdump DEBUG 10:54:13.145228 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 225, length 64
2015-10-29 10:54:13.298 tcpdump DEBUG 10:54:13.279994 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 225, length 64
2015-10-29 10:54:13.306 tcpdump DEBUG 10:54:13.281551 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 225, length 64
2015-10-29 10:54:13.652 tcpdump DEBUG 10:54:13.645545 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 226, length 64
2015-10-29 10:54:13.659 tcpdump DEBUG 10:54:13.646044 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 226, length 64
2015-10-29 10:54:13.788 tcpdump DEBUG 10:54:13.780966 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 226, length 64
2015-10-29 10:54:13.797 tcpdump DEBUG 10:54:13.782478 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 226, length 64
2015-10-29 10:54:14.151 tcpdump DEBUG 10:54:14.145851 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 227, length 64
2015-10-29 10:54:14.155 tcpdump DEBUG 10:54:14.146212 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 227, length 64
2015-10-29 10:54:14.294 tcpdump DEBUG 10:54:14.282182 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 227, length 64
2015-10-29 10:54:14.298 tcpdump DEBUG 10:54:14.282684 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 227, length 64
2015-10-29 10:54:14.652 tcpdump DEBUG 10:54:14.646550 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 228, length 64
2015-10-29 10:54:14.664 tcpdump DEBUG 10:54:14.647320 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 228, length 64
2015-10-29 10:54:14.789 tcpdump DEBUG 10:54:14.782910 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 228, length 64
2015-10-29 10:54:14.798 tcpdump DEBUG 10:54:14.783233 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 228, length 64
2015-10-29 10:54:15.155 tcpdump DEBUG 10:54:15.147672 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 229, length 64
2015-10-29 10:54:15.166 tcpdump DEBUG 10:54:15.148104 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 229, length 64
2015-10-29 10:54:15.301 tcpdump DEBUG 10:54:15.283202 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 229, length 64
2015-10-29 10:54:15.317 tcpdump DEBUG 10:54:15.284817 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 229, length 64
2015-10-29 10:54:15.655 tcpdump DEBUG 10:54:15.648348 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 230, length 64
2015-10-29 10:54:15.660 tcpdump DEBUG 10:54:15.648763 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 230, length 64
2015-10-29 10:54:15.793 tcpdump DEBUG 10:54:15.784227 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 230, length 64
2015-10-29 10:54:15.801 tcpdump DEBUG 10:54:15.785641 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 230, length 64
2015-10-29 10:54:16.154 tcpdump DEBUG 10:54:16.148835 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 231, length 64
2015-10-29 10:54:16.168 tcpdump DEBUG 10:54:16.149322 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 231, length 64
2015-10-29 10:54:16.290 tcpdump DEBUG 10:54:16.284914 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 231, length 64
2015-10-29 10:54:16.295 tcpdump DEBUG 10:54:16.285405 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 231, length 64
2015-10-29 10:54:16.662 tcpdump DEBUG 10:54:16.649769 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 232, length 64
2015-10-29 10:54:16.667 tcpdump DEBUG 10:54:16.650185 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 232, length 64
2015-10-29 10:54:16.793 tcpdump DEBUG 10:54:16.786089 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 232, length 64
2015-10-29 10:54:16.800 tcpdump DEBUG 10:54:16.786486 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 232, length 64
2015-10-29 10:54:17.157 tcpdump DEBUG 10:54:17.150383 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 233, length 64
2015-10-29 10:54:17.167 tcpdump DEBUG 10:54:17.151423 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 233, length 64
2015-10-29 10:54:17.300 tcpdump DEBUG 10:54:17.286972 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 233, length 64
2015-10-29 10:54:17.308 tcpdump DEBUG 10:54:17.291280 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 233, length 64
2015-10-29 10:54:17.658 tcpdump DEBUG 10:54:17.651690 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 234, length 64
2015-10-29 10:54:17.664 tcpdump DEBUG 10:54:17.652153 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 234, length 64
2015-10-29 10:54:17.795 tcpdump DEBUG 10:54:17.787849 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 234, length 64
2015-10-29 10:54:17.799 tcpdump DEBUG 10:54:17.788482 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 234, length 64
2015-10-29 10:54:18.158 tcpdump DEBUG 10:54:18.152763 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 235, length 64
2015-10-29 10:54:18.163 tcpdump DEBUG 10:54:18.153233 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 235, length 64
2015-10-29 10:54:18.294 tcpdump DEBUG 10:54:18.288653 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 235, length 64
2015-10-29 10:54:18.298 tcpdump DEBUG 10:54:18.289272 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 235, length 64
2015-10-29 10:54:18.660 tcpdump DEBUG 10:54:18.653461 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 236, length 64
2015-10-29 10:54:18.665 tcpdump DEBUG 10:54:18.654172 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 236, length 64
2015-10-29 10:54:18.795 tcpdump DEBUG 10:54:18.789500 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 236, length 64
2015-10-29 10:54:18.800 tcpdump DEBUG 10:54:18.789849 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 236, length 64
2015-10-29 10:54:19.164 tcpdump DEBUG 10:54:19.154493 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 237, length 64
2015-10-29 10:54:19.169 tcpdump DEBUG 10:54:19.156114 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 237, length 64
2015-10-29 10:54:19.299 tcpdump DEBUG 10:54:19.290132 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 237, length 64
2015-10-29 10:54:19.305 tcpdump DEBUG 10:54:19.292265 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 237, length 64
2015-10-29 10:54:19.665 tcpdump DEBUG 10:54:19.655890 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 238, length 64
2015-10-29 10:54:19.670 tcpdump DEBUG 10:54:19.657440 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 238, length 64
2015-10-29 10:54:19.796 tcpdump DEBUG 10:54:19.791098 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 238, length 64
2015-10-29 10:54:19.801 tcpdump DEBUG 10:54:19.792392 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 238, length 64
2015-10-29 10:54:20.161 tcpdump DEBUG 10:54:20.156784 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 239, length 64
2015-10-29 10:54:20.166 tcpdump DEBUG 10:54:20.157170 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 239, length 64
2015-10-29 10:54:20.297 tcpdump DEBUG 10:54:20.291323 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:54:20.302 tcpdump DEBUG 10:54:20.292123 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:54:20.308 tcpdump DEBUG 10:54:20.292549 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 239, length 64
2015-10-29 10:54:20.313 tcpdump DEBUG 10:54:20.293085 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 239, length 64
2015-10-29 10:54:20.661 tcpdump DEBUG 10:54:20.657580 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 240, length 64
2015-10-29 10:54:20.666 tcpdump DEBUG 10:54:20.658062 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 240, length 64
2015-10-29 10:54:20.801 tcpdump DEBUG 10:54:20.793735 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 240, length 64
2015-10-29 10:54:20.807 tcpdump DEBUG 10:54:20.794171 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 240, length 64
2015-10-29 10:54:21.164 tcpdump DEBUG 10:54:21.158353 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 241, length 64
2015-10-29 10:54:21.169 tcpdump DEBUG 10:54:21.158754 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 241, length 64
2015-10-29 10:54:21.300 tcpdump DEBUG 10:54:21.294125 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 241, length 64
2015-10-29 10:54:21.307 tcpdump DEBUG 10:54:21.294589 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 241, length 64
2015-10-29 10:54:21.671 tcpdump DEBUG 10:54:21.659099 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 242, length 64
2015-10-29 10:54:21.677 tcpdump DEBUG 10:54:21.663312 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 242, length 64
2015-10-29 10:54:21.806 tcpdump DEBUG 10:54:21.794889 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 242, length 64
2015-10-29 10:54:21.824 tcpdump DEBUG 10:54:21.800504 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 242, length 64
2015-10-29 10:54:22.165 tcpdump DEBUG 10:54:22.160672 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 243, length 64
2015-10-29 10:54:22.171 tcpdump DEBUG 10:54:22.163166 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 243, length 64
2015-10-29 10:54:22.301 tcpdump DEBUG 10:54:22.295896 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 243, length 64
2015-10-29 10:54:22.307 tcpdump DEBUG 10:54:22.296253 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 243, length 64
2015-10-29 10:54:22.666 tcpdump DEBUG 10:54:22.661554 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 244, length 64
2015-10-29 10:54:22.670 tcpdump DEBUG 10:54:22.662317 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 244, length 64
2015-10-29 10:54:22.802 tcpdump DEBUG 10:54:22.797351 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 244, length 64
2015-10-29 10:54:22.807 tcpdump DEBUG 10:54:22.797694 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 244, length 64
2015-10-29 10:54:23.170 tcpdump DEBUG 10:54:23.162985 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 245, length 64
2015-10-29 10:54:23.176 tcpdump DEBUG 10:54:23.164257 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 245, length 64
2015-10-29 10:54:23.314 tcpdump DEBUG 10:54:23.301600 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 245, length 64
2015-10-29 10:54:23.327 tcpdump DEBUG 10:54:23.304310 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 245, length 64
2015-10-29 10:54:23.676 tcpdump DEBUG 10:54:23.664433 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 246, length 64
2015-10-29 10:54:23.687 tcpdump DEBUG 10:54:23.669627 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 246, length 64
2015-10-29 10:54:23.812 tcpdump DEBUG 10:54:23.802363 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 246, length 64
2015-10-29 10:54:23.829 tcpdump DEBUG 10:54:23.806551 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 246, length 64
2015-10-29 10:54:24.183 tcpdump DEBUG 10:54:24.165167 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 247, length 64
2015-10-29 10:54:24.202 tcpdump DEBUG 10:54:24.166398 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 247, length 64
2015-10-29 10:54:24.317 tcpdump DEBUG 10:54:24.304492 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 247, length 64
2015-10-29 10:54:24.325 tcpdump DEBUG 10:54:24.305427 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 247, length 64
2015-10-29 10:54:24.671 tcpdump DEBUG 10:54:24.665908 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 248, length 64
2015-10-29 10:54:24.676 tcpdump DEBUG 10:54:24.667648 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 248, length 64
2015-10-29 10:54:24.810 tcpdump DEBUG 10:54:24.805390 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 248, length 64
2015-10-29 10:54:24.816 tcpdump DEBUG 10:54:24.808609 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 248, length 64
2015-10-29 10:54:25.184 tcpdump DEBUG 10:54:25.166575 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 249, length 64
2015-10-29 10:54:25.209 tcpdump DEBUG 10:54:25.167367 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 249, length 64
2015-10-29 10:54:25.325 tcpdump DEBUG 10:54:25.309289 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 249, length 64
2015-10-29 10:54:25.337 tcpdump DEBUG 10:54:25.310472 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 249, length 64
2015-10-29 10:54:25.344 tcpdump DEBUG 10:54:25.314920 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:54:25.358 tcpdump DEBUG 10:54:25.318268 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:54:25.674 tcpdump DEBUG 10:54:25.667812 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 250, length 64
2015-10-29 10:54:25.684 tcpdump DEBUG 10:54:25.668708 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 250, length 64
2015-10-29 10:54:25.826 tcpdump DEBUG 10:54:25.814210 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 250, length 64
2015-10-29 10:54:25.832 tcpdump DEBUG 10:54:25.814989 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 250, length 64
2015-10-29 10:54:26.175 tcpdump DEBUG 10:54:26.168817 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 251, length 64
2015-10-29 10:54:26.183 tcpdump DEBUG 10:54:26.177144 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 251, length 64
2015-10-29 10:54:26.324 tcpdump DEBUG 10:54:26.315373 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 251, length 64
2015-10-29 10:54:26.333 tcpdump DEBUG 10:54:26.316471 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 251, length 64
2015-10-29 10:54:26.680 tcpdump DEBUG 10:54:26.669726 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 252, length 64
2015-10-29 10:54:26.688 tcpdump DEBUG 10:54:26.670286 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 252, length 64
2015-10-29 10:54:26.833 tcpdump DEBUG 10:54:26.817160 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 252, length 64
2015-10-29 10:54:26.850 tcpdump DEBUG 10:54:26.818722 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 252, length 64
2015-10-29 10:54:27.182 tcpdump DEBUG 10:54:27.170737 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 253, length 64
2015-10-29 10:54:27.193 tcpdump DEBUG 10:54:27.177222 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 253, length 64
2015-10-29 10:54:27.328 tcpdump DEBUG 10:54:27.319369 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 253, length 64
2015-10-29 10:54:27.338 tcpdump DEBUG 10:54:27.322331 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 253, length 64
2015-10-29 10:54:27.656 tcpdump DEBUG tcpdump: pcap_loop: The interface went down
2015-10-29 10:54:27.663 tcpdump DEBUG 359 packets captured
2015-10-29 10:54:27.670 tcpdump DEBUG 359 packets received by filter
2015-10-29 10:54:27.676 tcpdump DEBUG 0 packets dropped by kernel

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,80 @@
2015-10-20 09:04:38.111 28372 AUDIT nova.service [-] Starting cert node (version 2014.2.3-31.el7ost)
2015-10-20 09:04:42.204 28372 INFO oslo.messaging._drivers.impl_rabbit [req-76ec237e-2672-4555-9a25-8dc9f5e2ea14 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:04:42.270 28372 INFO oslo.messaging._drivers.impl_rabbit [req-76ec237e-2672-4555-9a25-8dc9f5e2ea14 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:57.150 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.150 28372 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.163 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:58.166 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.219 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:59.221 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:00.223 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.279 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:03.281 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:04.285 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.534 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:23.510 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:23.510 28372 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:23.514 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:23.545 28372 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x3c8f510>> run outlasted interval by 15.89 sec
2015-10-20 10:17:24.517 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.706 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:25.630 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 12:20:25.630 28372 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 12:20:25.636 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:20:26.639 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:26.695 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:20:27.697 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:20:28.699 28372 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:28.736 28372 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:20:29.813 28372 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:40:59.561 1478 AUDIT nova.service [-] Starting cert node (version 2014.2.3-31.el7ost)
2015-10-20 12:41:15.399 1478 WARNING oslo.db.sqlalchemy.session [req-488162e1-c945-4270-8dbb-518edc0a94af ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:25.414 1478 WARNING oslo.db.sqlalchemy.session [req-488162e1-c945-4270-8dbb-518edc0a94af ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:39.332 1478 INFO oslo.messaging._drivers.impl_rabbit [req-488162e1-c945-4270-8dbb-518edc0a94af ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:39.536 1478 INFO oslo.messaging._drivers.impl_rabbit [req-488162e1-c945-4270-8dbb-518edc0a94af ] Connected to AMQP server on 10.12.27.29:5672

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,983 @@
2015-10-20 09:03:14.057 28068 INFO nova.openstack.common.service [-] Starting 4 workers
2015-10-20 09:03:14.064 28068 INFO nova.openstack.common.service [-] Started child 28139
2015-10-20 09:03:14.079 28068 INFO nova.openstack.common.service [-] Started child 28140
2015-10-20 09:03:14.088 28139 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:14.094 28068 INFO nova.openstack.common.service [-] Started child 28141
2015-10-20 09:03:14.103 28140 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:14.109 28068 INFO nova.openstack.common.service [-] Started child 28142
2015-10-20 09:03:14.136 28141 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:14.143 28142 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:21.388 28142 INFO oslo.messaging._drivers.impl_rabbit [req-6ff800e7-1284-4d10-a694-09bebca13ec1 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:21.426 28140 INFO oslo.messaging._drivers.impl_rabbit [req-f898b71e-ecc3-40a5-bbac-af976990bbd6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:21.558 28140 INFO oslo.messaging._drivers.impl_rabbit [req-f898b71e-ecc3-40a5-bbac-af976990bbd6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:21.604 28142 INFO oslo.messaging._drivers.impl_rabbit [req-6ff800e7-1284-4d10-a694-09bebca13ec1 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:22.127 28139 INFO oslo.messaging._drivers.impl_rabbit [req-e3a29512-5119-47e5-a16d-5f5199522ce9 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:22.267 28139 INFO oslo.messaging._drivers.impl_rabbit [req-e3a29512-5119-47e5-a16d-5f5199522ce9 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:22.514 28141 INFO oslo.messaging._drivers.impl_rabbit [req-bbc29b61-0985-40ce-842f-eb1675b87129 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:22.581 28141 INFO oslo.messaging._drivers.impl_rabbit [req-bbc29b61-0985-40ce-842f-eb1675b87129 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.108 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.186 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.419 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.495 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.723 28139 INFO oslo.messaging._drivers.impl_rabbit [req-6964af20-7fed-451c-be53-348f4dbb483a ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:24.843 28139 INFO oslo.messaging._drivers.impl_rabbit [req-6964af20-7fed-451c-be53-348f4dbb483a ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:25.148 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:25.265 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:57.153 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.153 28139 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.163 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:57.195 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.195 28142 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.227 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:57.202 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.202 28140 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.230 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:57.210 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.210 28141 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.232 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:58.165 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.234 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.235 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.246 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.314 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:58.387 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:58.407 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:58.416 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:59.315 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:59.389 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:59.409 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:59.417 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:00.317 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.374 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:00.396 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.410 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.422 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.573 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:00.578 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:00.585 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:03.376 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:03.575 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:03.580 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:03.588 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:04.383 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.582 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.593 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.603 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.725 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.928 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.968 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.986 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:12.671 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_922484e2cef4454091dea8057b0fa8a1': [Errno 32] Broken pipe
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 273, in _wait_method
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.wait()
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 69, in wait
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.dispatch_method(method_sig, args, content)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 87, in dispatch_method
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(self, args)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 526, in _close
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self._x_close_ok()
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 554, in _x_close_ok
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((10, 51))
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 32] Broken pipe
2015-10-20 09:11:12.671 28139 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:11:12.683 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:13.398 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_04c60d6dba4345f6a8504766aecc3b93': [Errno 32] Broken pipe
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 273, in _wait_method
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.wait()
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 69, in wait
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.dispatch_method(method_sig, args, content)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 87, in dispatch_method
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(self, args)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 526, in _close
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self._x_close_ok()
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 554, in _x_close_ok
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((10, 51))
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 32] Broken pipe
2015-10-20 09:11:13.398 28140 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:11:13.415 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:13.685 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:13.747 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:14.417 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:14.507 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:22.666 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_922484e2cef4454091dea8057b0fa8a1': [Errno 32] Broken pipe
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 273, in _wait_method
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.wait()
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 69, in wait
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.dispatch_method(method_sig, args, content)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 87, in dispatch_method
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(self, args)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 526, in _close
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self._x_close_ok()
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 554, in _x_close_ok
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((10, 51))
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 32] Broken pipe
2015-10-20 09:11:22.666 28142 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:11:22.678 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:23.350 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_04c60d6dba4345f6a8504766aecc3b93': [Errno 32] Broken pipe
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 273, in _wait_method
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.wait()
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 69, in wait
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.dispatch_method(method_sig, args, content)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 87, in dispatch_method
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(self, args)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 526, in _close
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self._x_close_ok()
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 554, in _x_close_ok
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((10, 51))
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 32] Broken pipe
2015-10-20 09:11:23.350 28141 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:11:23.364 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:23.680 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:23.740 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:24.366 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:24.440 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:22.806 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:22.806 28142 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:22.811 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:22.845 28142 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x2198990>> run outlasted interval by 15.88 sec
2015-10-20 10:17:22.902 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:22.902 28140 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:22.905 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:22.936 28140 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x2198990>> run outlasted interval by 15.74 sec
2015-10-20 10:17:23.542 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:23.542 28141 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:23.546 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:23.574 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:23.574 28139 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:23.578 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:23.578 28141 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x2198990>> run outlasted interval by 15.65 sec
2015-10-20 10:17:23.605 28139 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x2198990>> run outlasted interval by 15.89 sec
2015-10-20 10:17:23.812 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:23.884 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:23.907 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:23.987 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.121 28142 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_922484e2cef4454091dea8057b0fa8a1': [Errno 110] Connection timed out
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:24.121 28142 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:24.127 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:24.130 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.173 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.215 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.258 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.330 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.335 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.339 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.344 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.551 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.548 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_04c60d6dba4345f6a8504766aecc3b93': [Errno 110] Connection timed out
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:24.548 28140 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:24.569 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:24.580 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.734 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.739 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.129 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.160 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.210 28142 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.233 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.571 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:25.619 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:31.943 28141 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_922484e2cef4454091dea8057b0fa8a1': [Errno 110] Connection timed out
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:31.943 28141 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:31.947 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:32.949 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:33.002 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:34.442 28139 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_04c60d6dba4345f6a8504766aecc3b93': [Errno 110] Connection timed out
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:34.442 28139 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:34.446 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:35.448 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:35.502 28139 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:49.322 28140 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'reply_922484e2cef4454091dea8057b0fa8a1': Exchange.declare: (404) NOT_FOUND - no exchange 'reply_922484e2cef4454091dea8057b0fa8a1' in vhost '/'
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 374, in __init__
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit type='direct', **options)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 69, in wait
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit return self.dispatch_method(method_sig, args, content)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 87, in dispatch_method
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(self, args)
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 241, in _close
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit reply_code, reply_text, (class_id, method_id), ChannelError,
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit NotFound: Exchange.declare: (404) NOT_FOUND - no exchange 'reply_922484e2cef4454091dea8057b0fa8a1' in vhost '/'
2015-10-20 10:33:49.322 28140 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:33:49.327 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:50.331 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:50.386 28140 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:19.070 28141 INFO oslo.messaging._drivers.impl_rabbit [req-05632eb8-480d-4988-86ec-066cfdd0d802 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:19.119 28141 INFO oslo.messaging._drivers.impl_rabbit [req-05632eb8-480d-4988-86ec-066cfdd0d802 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:15.792 28139 INFO oslo.messaging._drivers.impl_rabbit [req-73736a9e-bc3c-4aec-971f-6cbbf156bebb ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:15.845 28139 INFO oslo.messaging._drivers.impl_rabbit [req-73736a9e-bc3c-4aec-971f-6cbbf156bebb ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:51:28.083 28141 WARNING nova.scheduler.utils [req-a40a6ce0-ec37-4fae-9773-f915c79c2aab None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 11:51:28.086 28141 WARNING nova.scheduler.utils [req-a40a6ce0-ec37-4fae-9773-f915c79c2aab None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 11:52:17.144 28142 WARNING nova.scheduler.utils [req-0e58c5ff-b025-4880-86d2-9176e3665ed8 None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 11:52:17.147 28142 WARNING nova.scheduler.utils [req-0e58c5ff-b025-4880-86d2-9176e3665ed8 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 11:58:47.478 28141 WARNING nova.scheduler.utils [req-ad8838a6-f187-47fb-99c5-7016e1855b82 None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 11:58:47.480 28141 WARNING nova.scheduler.utils [req-ad8838a6-f187-47fb-99c5-7016e1855b82 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 12:01:45.855 28141 WARNING nova.scheduler.utils [req-7d0eea8b-a04a-43d7-9a4b-b47452f1dc2c None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 12:01:45.857 28141 WARNING nova.scheduler.utils [req-7d0eea8b-a04a-43d7-9a4b-b47452f1dc2c None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 12:02:08.599 28141 WARNING nova.scheduler.utils [req-ca1f60bb-d2dc-4e13-8ecb-9a9b8b051333 None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 12:02:08.601 28141 WARNING nova.scheduler.utils [req-ca1f60bb-d2dc-4e13-8ecb-9a9b8b051333 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 12:03:09.584 28140 WARNING nova.scheduler.utils [req-a44ff3bc-e130-414b-997b-ad619ebda334 None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 12:03:09.587 28140 WARNING nova.scheduler.utils [req-a44ff3bc-e130-414b-997b-ad619ebda334 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 12:04:47.928 28139 WARNING nova.scheduler.utils [req-809a8e33-2130-4860-b5db-880d74657de4 None] Failed to compute_task_migrate_server: Unable to migrate instance (456d8388-2014-4935-9af5-adeaca222a9b) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 12:04:47.931 28139 WARNING nova.scheduler.utils [req-809a8e33-2130-4860-b5db-880d74657de4 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 12:06:16.568 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:06:16.666 28141 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:18:51.482 28140 INFO oslo.messaging._drivers.impl_rabbit [req-494a7193-8b54-4546-abda-7448cf30ec86 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:18:51.534 28140 INFO oslo.messaging._drivers.impl_rabbit [req-494a7193-8b54-4546-abda-7448cf30ec86 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:19.838 28142 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:20:19.838 28139 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:20:19.844 28068 INFO nova.openstack.common.service [-] Caught SIGTERM, stopping children
2015-10-20 12:20:19.846 28068 INFO nova.openstack.common.service [-] Waiting on 4 children to exit
2015-10-20 12:20:19.848 28141 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:20:19.858 28140 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:20:19.875 28068 INFO nova.openstack.common.service [-] Child 28141 exited with status 1
2015-10-20 12:20:20.043 28068 INFO nova.openstack.common.service [-] Child 28139 exited with status 1
2015-10-20 12:20:20.047 28068 INFO nova.openstack.common.service [-] Child 28140 exited with status 1
2015-10-20 12:20:20.049 28068 INFO nova.openstack.common.service [-] Child 28142 exited with status 1
2015-10-20 12:40:58.120 1404 INFO nova.openstack.common.service [-] Starting 4 workers
2015-10-20 12:40:58.318 1404 INFO nova.openstack.common.service [-] Started child 2309
2015-10-20 12:40:58.397 1404 INFO nova.openstack.common.service [-] Started child 2315
2015-10-20 12:40:58.505 2309 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 12:40:58.541 2316 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 12:40:58.434 1404 INFO nova.openstack.common.service [-] Started child 2316
2015-10-20 12:40:58.597 2315 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 12:40:58.581 1404 INFO nova.openstack.common.service [-] Started child 2326
2015-10-20 12:40:58.843 2326 AUDIT nova.service [-] Starting conductor node (version 2014.2.3-31.el7ost)
2015-10-20 12:41:13.867 2316 WARNING oslo.db.sqlalchemy.session [req-97add66d-8ce5-4112-add4-d6d5bedd1b20 ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:14.305 2309 WARNING oslo.db.sqlalchemy.session [req-de4ac5c2-a694-4d0a-bc2f-a59c42bab4c5 ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:14.336 2315 WARNING oslo.db.sqlalchemy.session [req-36009f26-c025-4ccd-9416-b7716b548c90 ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:15.297 2326 WARNING oslo.db.sqlalchemy.session [req-aedc9d9f-09ea-4d05-96a5-4df2cdb186b6 ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:25.367 2316 WARNING oslo.db.sqlalchemy.session [req-97add66d-8ce5-4112-add4-d6d5bedd1b20 ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:25.371 2309 WARNING oslo.db.sqlalchemy.session [req-de4ac5c2-a694-4d0a-bc2f-a59c42bab4c5 ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:25.374 2315 WARNING oslo.db.sqlalchemy.session [req-36009f26-c025-4ccd-9416-b7716b548c90 ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:25.377 2326 WARNING oslo.db.sqlalchemy.session [req-aedc9d9f-09ea-4d05-96a5-4df2cdb186b6 ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:40.372 2309 INFO oslo.messaging._drivers.impl_rabbit [req-de4ac5c2-a694-4d0a-bc2f-a59c42bab4c5 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.382 2315 INFO oslo.messaging._drivers.impl_rabbit [req-36009f26-c025-4ccd-9416-b7716b548c90 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.567 2315 INFO oslo.messaging._drivers.impl_rabbit [req-36009f26-c025-4ccd-9416-b7716b548c90 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.627 2326 INFO oslo.messaging._drivers.impl_rabbit [req-aedc9d9f-09ea-4d05-96a5-4df2cdb186b6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.646 2316 INFO oslo.messaging._drivers.impl_rabbit [req-97add66d-8ce5-4112-add4-d6d5bedd1b20 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.668 2309 INFO oslo.messaging._drivers.impl_rabbit [req-de4ac5c2-a694-4d0a-bc2f-a59c42bab4c5 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.804 2326 INFO oslo.messaging._drivers.impl_rabbit [req-aedc9d9f-09ea-4d05-96a5-4df2cdb186b6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:40.838 2316 INFO oslo.messaging._drivers.impl_rabbit [req-97add66d-8ce5-4112-add4-d6d5bedd1b20 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:44.553 2315 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:44.643 2315 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:45.973 2309 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:46.057 2309 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:46.416 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:46.485 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:46.800 2316 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:46.870 2316 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:02:06.968 2315 INFO oslo.messaging._drivers.impl_rabbit [req-3d2e34e0-ff36-45c4-94c9-218f9c5e5bf6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:02:07.023 2315 INFO oslo.messaging._drivers.impl_rabbit [req-3d2e34e0-ff36-45c4-94c9-218f9c5e5bf6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:02:07.840 2315 WARNING nova.scheduler.utils [req-3d2e34e0-ff36-45c4-94c9-218f9c5e5bf6 None] Failed to compute_task_migrate_server: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4971, in check_can_live_migrate_source
block_device_info)
File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/driver.py", line 5342, in check_can_live_migrate_source
raise exception.InvalidSharedStorage(reason=reason, path=source)
InvalidSharedStorage: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4943, in check_can_live_migrate_destination
dest_check_data)
File "/usr/lib/python2.7/site-packages/nova/compute/rpcapi.py", line 403, in check_can_live_migrate_source
dest_check_data=dest_check_data)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
retry=self.retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
timeout=timeout, retry=retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
retry=retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 407, in _send
raise result
InvalidSharedStorage_Remote: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4971, in check_can_live_migrate_source
block_device_info)
File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/driver.py", line 5342, in check_can_live_migrate_source
raise exception.InvalidSharedStorage(reason=reason, path=source)
InvalidSharedStorage: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
2015-10-20 13:02:07.842 2315 WARNING nova.scheduler.utils [req-3d2e34e0-ff36-45c4-94c9-218f9c5e5bf6 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 13:08:55.780 2326 INFO oslo.messaging._drivers.impl_rabbit [req-d12b8303-89ca-4461-ae0b-3eccdd4a0c06 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:08:55.831 2326 INFO oslo.messaging._drivers.impl_rabbit [req-d12b8303-89ca-4461-ae0b-3eccdd4a0c06 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:08:56.687 2326 WARNING nova.scheduler.utils [req-d12b8303-89ca-4461-ae0b-3eccdd4a0c06 None] Failed to compute_task_migrate_server: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4971, in check_can_live_migrate_source
block_device_info)
File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/driver.py", line 5342, in check_can_live_migrate_source
raise exception.InvalidSharedStorage(reason=reason, path=source)
InvalidSharedStorage: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4943, in check_can_live_migrate_destination
dest_check_data)
File "/usr/lib/python2.7/site-packages/nova/compute/rpcapi.py", line 403, in check_can_live_migrate_source
dest_check_data=dest_check_data)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
retry=self.retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
timeout=timeout, retry=retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
retry=retry)
File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 407, in _send
raise result
InvalidSharedStorage_Remote: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 134, in _dispatch_and_reply
incoming.message))
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 177, in _dispatch
return self._do_dispatch(endpoint, method, ctxt, args)
File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/dispatcher.py", line 123, in _do_dispatch
result = getattr(endpoint, method)(ctxt, **new_args)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 88, in wrapped
payload)
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/exception.py", line 71, in wrapped
return f(self, context, *args, **kw)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 343, in decorated_function
kwargs['instance'], e, sys.exc_info())
File "/usr/lib/python2.7/site-packages/nova/openstack/common/excutils.py", line 82, in __exit__
six.reraise(self.type_, self.value, self.tb)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 331, in decorated_function
return function(self, context, *args, **kwargs)
File "/usr/lib/python2.7/site-packages/nova/compute/manager.py", line 4971, in check_can_live_migrate_source
block_device_info)
File "/usr/lib/python2.7/site-packages/nova/virt/libvirt/driver.py", line 5342, in check_can_live_migrate_source
raise exception.InvalidSharedStorage(reason=reason, path=source)
InvalidSharedStorage: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com is not on shared storage: Live migration can not be used without shared storage.
2015-10-20 13:08:56.689 2326 WARNING nova.scheduler.utils [req-d12b8303-89ca-4461-ae0b-3eccdd4a0c06 None] [instance: 456d8388-2014-4935-9af5-adeaca222a9b] Setting instance to ACTIVE state.
2015-10-20 13:15:05.093 2309 INFO oslo.messaging._drivers.impl_rabbit [req-3d0b6359-7677-4d73-8667-c5caa9b05655 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:15:05.170 2309 INFO oslo.messaging._drivers.impl_rabbit [req-3d0b6359-7677-4d73-8667-c5caa9b05655 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:10.232 2316 INFO oslo.messaging._drivers.impl_rabbit [req-6b10a779-0a4d-48d8-9534-4609ab16c20a ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:10.285 2316 INFO oslo.messaging._drivers.impl_rabbit [req-6b10a779-0a4d-48d8-9534-4609ab16c20a ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:17:15.469 2309 WARNING nova.scheduler.utils [req-9b7650da-b9d7-45e1-b196-aae4e51fd5f1 None] Failed to compute_task_migrate_server: Unable to migrate instance (92ff693e-82c2-40d4-9b96-0c5a614ab218) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 14:17:15.472 2309 WARNING nova.scheduler.utils [req-9b7650da-b9d7-45e1-b196-aae4e51fd5f1 None] [instance: 92ff693e-82c2-40d4-9b96-0c5a614ab218] Setting instance to ACTIVE state.
2015-10-20 14:17:26.407 2315 WARNING nova.scheduler.utils [req-95fbd05b-045d-4637-8e84-71aa92db0215 None] Failed to compute_task_migrate_server: Unable to migrate instance (92ff693e-82c2-40d4-9b96-0c5a614ab218) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 14:17:26.409 2315 WARNING nova.scheduler.utils [req-95fbd05b-045d-4637-8e84-71aa92db0215 None] [instance: 92ff693e-82c2-40d4-9b96-0c5a614ab218] Setting instance to ACTIVE state.
2015-10-20 14:48:16.520 2316 WARNING nova.scheduler.utils [req-953d6884-e77e-4765-8ba9-daf3fca8c5df None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com).
2015-10-20 14:48:16.522 2316 WARNING nova.scheduler.utils [req-953d6884-e77e-4765-8ba9-daf3fca8c5df None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-21 08:00:47.893 2309 WARNING nova.scheduler.utils [req-8af234e7-13a2-43b0-ac1e-983cdaee2b64 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-21 08:00:47.895 2309 WARNING nova.scheduler.utils [req-8af234e7-13a2-43b0-ac1e-983cdaee2b64 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-27 06:02:02.666 2309 WARNING nova.scheduler.utils [req-1c40e640-31e2-4da7-bbd8-f007addbb262 None] Failed to compute_task_migrate_server: Compute service of hp-ms-01-c20.moonshot1.lab.eng.rdu.redhat.com is unavailable at this time.
2015-10-27 06:02:02.670 2309 WARNING nova.scheduler.utils [req-1c40e640-31e2-4da7-bbd8-f007addbb262 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-28 07:42:11.930 2326 WARNING nova.scheduler.utils [req-0e173ac0-3b60-4c67-b51d-69aadd797c11 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-28 07:42:11.933 2326 WARNING nova.scheduler.utils [req-0e173ac0-3b60-4c67-b51d-69aadd797c11 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-28 10:20:26.345 2309 WARNING nova.scheduler.utils [req-2bad4bc2-0969-4344-ace9-21d0aad10074 None] Failed to compute_task_migrate_server: Compute service of hp-ms-01-c29^Coonshot1.lab.eng.rdu.redhat.com is unavailable at this time.
2015-10-28 10:20:26.349 2309 WARNING nova.scheduler.utils [req-2bad4bc2-0969-4344-ace9-21d0aad10074 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-28 10:35:06.036 2309 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-28 10:35:06.250 2309 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-28 10:39:48.699 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-28 10:39:48.785 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-28 11:13:43.943 2326 WARNING nova.scheduler.utils [req-d06d853f-fe5e-44a1-bfc1-1f310450f20c None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-28 11:13:43.945 2326 WARNING nova.scheduler.utils [req-d06d853f-fe5e-44a1-bfc1-1f310450f20c None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-28 15:31:30.687 2316 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-28 15:31:30.785 2316 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-28 15:43:10.922 2309 WARNING nova.scheduler.utils [req-a156ef03-2d7b-4702-b5e7-8edc9d05525d None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-28 15:43:10.925 2309 WARNING nova.scheduler.utils [req-a156ef03-2d7b-4702-b5e7-8edc9d05525d None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-28 15:57:15.718 2316 WARNING nova.scheduler.utils [req-64f29c21-072f-4b90-b681-5dcf2638cc26 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com).
2015-10-28 15:57:15.721 2316 WARNING nova.scheduler.utils [req-64f29c21-072f-4b90-b681-5dcf2638cc26 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 05:17:58.205 2326 WARNING nova.scheduler.utils [req-b9c017c1-88eb-400b-849c-8e259898b132 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 05:17:58.208 2326 WARNING nova.scheduler.utils [req-b9c017c1-88eb-400b-849c-8e259898b132 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:14:42.679 2326 WARNING nova.scheduler.utils [req-1311fd78-ae5c-4a69-aaaa-716a97898a13 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:14:42.682 2326 WARNING nova.scheduler.utils [req-1311fd78-ae5c-4a69-aaaa-716a97898a13 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:23:29.226 2315 WARNING nova.scheduler.utils [req-e9599234-c98f-49fa-9ced-16516d1f09c7 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:23:29.230 2315 WARNING nova.scheduler.utils [req-e9599234-c98f-49fa-9ced-16516d1f09c7 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:28:09.325 2315 WARNING nova.scheduler.utils [req-114e3b52-7957-49a2-a317-02f5ec397e8c None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:28:09.328 2315 WARNING nova.scheduler.utils [req-114e3b52-7957-49a2-a317-02f5ec397e8c None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:28:56.660 2309 WARNING nova.scheduler.utils [req-80738fe4-6d7f-443d-bb69-c0035768bb76 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:28:56.662 2309 WARNING nova.scheduler.utils [req-80738fe4-6d7f-443d-bb69-c0035768bb76 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:31:21.269 2315 WARNING nova.scheduler.utils [req-9359e012-1e10-42fd-9528-31e67bb41e10 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:31:21.271 2315 WARNING nova.scheduler.utils [req-9359e012-1e10-42fd-9528-31e67bb41e10 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:33:42.030 2309 WARNING nova.scheduler.utils [req-f371a58e-6291-4cf2-bde2-96da0d52c394 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:33:42.032 2309 WARNING nova.scheduler.utils [req-f371a58e-6291-4cf2-bde2-96da0d52c394 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:36:37.611 2315 WARNING nova.scheduler.utils [req-08ac3daf-9ca2-4b2a-a103-14773ed963c0 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:36:37.613 2315 WARNING nova.scheduler.utils [req-08ac3daf-9ca2-4b2a-a103-14773ed963c0 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:43:51.389 2326 WARNING nova.scheduler.utils [req-21a65751-abb1-488d-9e81-9c305eb04dd7 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:43:51.391 2326 WARNING nova.scheduler.utils [req-21a65751-abb1-488d-9e81-9c305eb04dd7 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:49:44.350 2326 WARNING nova.scheduler.utils [req-9d388942-7ec2-4e56-adad-bbb59f971a29 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 06:49:44.352 2326 WARNING nova.scheduler.utils [req-9d388942-7ec2-4e56-adad-bbb59f971a29 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.
2015-10-29 06:57:20.096 2315 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-29 06:57:20.213 2315 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-29 06:58:29.113 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-29 06:58:29.195 2326 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-29 10:27:37.843 2316 WARNING nova.scheduler.utils [req-4c215208-9243-437d-a545-63504d817e92 None] Failed to compute_task_migrate_server: Unable to migrate instance (a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) to current host (hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com).
2015-10-29 10:27:37.846 2316 WARNING nova.scheduler.utils [req-4c215208-9243-437d-a545-63504d817e92 None] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] Setting instance to ACTIVE state.

View File

@ -0,0 +1,83 @@
2015-10-20 09:03:00.888 27920 AUDIT nova.service [-] Starting consoleauth node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:05.417 27920 INFO oslo.messaging._drivers.impl_rabbit [req-f5726ccc-1e80-4483-8196-a8635eceb9d0 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:05.509 27920 INFO oslo.messaging._drivers.impl_rabbit [req-f5726ccc-1e80-4483-8196-a8635eceb9d0 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:57.160 27920 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.160 27920 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.170 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:58.173 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.344 27920 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:59.346 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:00.353 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.545 27920 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:03.547 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:04.548 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.993 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:13.640 27920 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:13.640 27920 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:13.646 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:13.709 27920 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x1fce950>> run outlasted interval by 2.90 sec
2015-10-20 10:17:14.650 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:14.789 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:38.439 27920 AUDIT nova.consoleauth.manager [req-a16ed905-c928-42b0-86bf-61f650e5f7f0 None] Received Token: 783f24a2-4c5a-4492-ae72-e839060b82e9, {'instance_uuid': u'ecf81ced-4799-4022-a7c8-14069046afd8', 'internal_access_path': None, 'last_activity_at': 1445354018.437952, 'console_type': u'novnc', 'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', 'token': u'783f24a2-4c5a-4492-ae72-e839060b82e9', 'port': u'5900'}
2015-10-20 11:13:38.444 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:38.497 27920 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.341 27920 AUDIT nova.consoleauth.manager [req-36677455-5b22-43e8-958a-c9c143b66e2b None] Checking Token: 783f24a2-4c5a-4492-ae72-e839060b82e9, True
2015-10-20 11:13:44.581 27920 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.629 27920 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:51.900 27920 AUDIT nova.consoleauth.manager [req-600b9e13-3ed1-47c6-806b-4812e1a8b774 None] Received Token: 25a866d9-6802-4c59-8901-b20d5d3d909c, {'instance_uuid': u'456d8388-2014-4935-9af5-adeaca222a9b', 'internal_access_path': None, 'last_activity_at': 1445355771.899593, 'console_type': u'novnc', 'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', 'token': u'25a866d9-6802-4c59-8901-b20d5d3d909c', 'port': u'5900'}
2015-10-20 11:42:54.034 27920 AUDIT nova.consoleauth.manager [req-3546330a-7d92-4c91-8b12-a7c356131138 None] Checking Token: 25a866d9-6802-4c59-8901-b20d5d3d909c, True
2015-10-20 11:43:04.472 27920 AUDIT nova.consoleauth.manager [req-b10f6987-ca9c-4632-99e9-7b33686724ab None] Checking Token: 25a866d9-6802-4c59-8901-b20d5d3d909c, True
2015-10-20 12:20:21.870 27920 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:41:11.389 1596 AUDIT nova.service [-] Starting consoleauth node (version 2014.2.3-31.el7ost)
2015-10-20 12:41:18.492 1596 WARNING oslo.db.sqlalchemy.session [req-cb40b5d0-1584-44a2-a7d2-600a3b4bef3e ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:31.567 1596 INFO oslo.messaging._drivers.impl_rabbit [req-cb40b5d0-1584-44a2-a7d2-600a3b4bef3e ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:31.777 1596 INFO oslo.messaging._drivers.impl_rabbit [req-cb40b5d0-1584-44a2-a7d2-600a3b4bef3e ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:51:57.964 1596 AUDIT nova.consoleauth.manager [req-a5a597e9-6af6-4069-8311-884a8bfb88a2 None] Received Token: 44c9f4cb-d246-40c2-975b-b6165ea93de5, {'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', 'internal_access_path': None, 'last_activity_at': 1445363517.963422, 'console_type': u'novnc', 'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', 'token': u'44c9f4cb-d246-40c2-975b-b6165ea93de5', 'port': u'5900'}
2015-10-20 13:51:57.969 1596 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:51:58.019 1596 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.242 1596 AUDIT nova.consoleauth.manager [req-7fef22aa-a313-4313-a246-76d4991f7eda None] Checking Token: 44c9f4cb-d246-40c2-975b-b6165ea93de5, True
2015-10-20 13:52:01.657 1596 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.719 1596 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:04.577 1596 AUDIT nova.consoleauth.manager [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 None] Checking Token: 44c9f4cb-d246-40c2-975b-b6165ea93de5, True
2015-10-20 14:14:39.823 1596 AUDIT nova.consoleauth.manager [req-59a975b1-3247-4612-8949-24cd0bc754df None] Received Token: 026e99e9-a55f-4fea-86d1-e2462e3571fb, {'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', 'internal_access_path': None, 'last_activity_at': 1445364879.822647, 'console_type': u'novnc', 'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', 'token': u'026e99e9-a55f-4fea-86d1-e2462e3571fb', 'port': u'5900'}
2015-10-20 14:14:43.272 1596 AUDIT nova.consoleauth.manager [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 None] Checking Token: 026e99e9-a55f-4fea-86d1-e2462e3571fb, True
2015-10-20 14:14:51.901 1596 AUDIT nova.consoleauth.manager [req-aedef96c-fd58-420a-999d-62752134f405 None] Checking Token: 026e99e9-a55f-4fea-86d1-e2462e3571fb, True
2015-10-20 14:19:58.393 1596 AUDIT nova.consoleauth.manager [req-24a15218-cf60-4e5c-a60b-6e278194ad2c None] Received Token: d9f41bbd-cf9a-4594-9a17-735c7286b3ba, {'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', 'internal_access_path': None, 'last_activity_at': 1445365198.392311, 'console_type': u'novnc', 'host': u'hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com', 'token': u'd9f41bbd-cf9a-4594-9a17-735c7286b3ba', 'port': u'5900'}
2015-10-20 14:20:01.529 1596 AUDIT nova.consoleauth.manager [req-b4c962de-e181-434a-bb88-1fec4b1e3925 None] Checking Token: d9f41bbd-cf9a-4594-9a17-735c7286b3ba, True
2015-10-20 14:20:04.608 1596 AUDIT nova.consoleauth.manager [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 None] Checking Token: d9f41bbd-cf9a-4594-9a17-735c7286b3ba, True
2015-10-20 14:40:56.149 1596 AUDIT nova.consoleauth.manager [req-f33e0cc6-5be3-4bbc-abc8-8a62a0fe2d6c None] Received Token: ecf1364f-e246-4d4e-9fc8-a5b58503255d, {'instance_uuid': u'a18a5824-4215-4e24-bcfc-cb9f89f6bcbd', 'internal_access_path': None, 'last_activity_at': 1445366456.148141, 'console_type': u'novnc', 'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', 'token': u'ecf1364f-e246-4d4e-9fc8-a5b58503255d', 'port': u'5900'}
2015-10-20 14:40:58.983 1596 AUDIT nova.consoleauth.manager [req-0d809498-8121-4726-8a34-89d09a6d0c3d None] Checking Token: ecf1364f-e246-4d4e-9fc8-a5b58503255d, True
2015-10-20 14:41:01.374 1596 AUDIT nova.consoleauth.manager [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 None] Checking Token: ecf1364f-e246-4d4e-9fc8-a5b58503255d, True
2015-10-20 14:47:47.793 1596 AUDIT nova.consoleauth.manager [req-f49d4d6c-0f90-41df-82aa-df5657b78423 None] Checking Token: ecf1364f-e246-4d4e-9fc8-a5b58503255d, False

View File

@ -0,0 +1,79 @@
2015-10-20 08:48:26.271 23450 INFO migrate.versioning.api [-] 215 -> 216...
2015-10-20 08:48:43.888 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:43.890 23450 INFO migrate.versioning.api [-] 216 -> 217...
2015-10-20 08:48:43.913 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:43.914 23450 INFO migrate.versioning.api [-] 217 -> 218...
2015-10-20 08:48:43.937 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:43.939 23450 INFO migrate.versioning.api [-] 218 -> 219...
2015-10-20 08:48:43.962 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:43.964 23450 INFO migrate.versioning.api [-] 219 -> 220...
2015-10-20 08:48:43.987 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:43.988 23450 INFO migrate.versioning.api [-] 220 -> 221...
2015-10-20 08:48:44.012 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.013 23450 INFO migrate.versioning.api [-] 221 -> 222...
2015-10-20 08:48:44.037 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.038 23450 INFO migrate.versioning.api [-] 222 -> 223...
2015-10-20 08:48:44.062 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.063 23450 INFO migrate.versioning.api [-] 223 -> 224...
2015-10-20 08:48:44.087 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.088 23450 INFO migrate.versioning.api [-] 224 -> 225...
2015-10-20 08:48:44.112 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.113 23450 INFO migrate.versioning.api [-] 225 -> 226...
2015-10-20 08:48:44.139 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.140 23450 INFO migrate.versioning.api [-] 226 -> 227...
2015-10-20 08:48:44.179 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.180 23450 INFO migrate.versioning.api [-] 227 -> 228...
2015-10-20 08:48:44.388 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.389 23450 INFO migrate.versioning.api [-] 228 -> 229...
2015-10-20 08:48:44.596 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.597 23450 INFO migrate.versioning.api [-] 229 -> 230...
2015-10-20 08:48:44.963 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:44.964 23450 INFO migrate.versioning.api [-] 230 -> 231...
2015-10-20 08:48:45.222 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:45.223 23450 INFO migrate.versioning.api [-] 231 -> 232...
2015-10-20 08:48:46.789 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:46.791 23450 INFO migrate.versioning.api [-] 232 -> 233...
2015-10-20 08:48:47.101 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.105 23450 INFO migrate.versioning.api [-] 233 -> 234...
2015-10-20 08:48:47.251 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.253 23450 INFO migrate.versioning.api [-] 234 -> 235...
2015-10-20 08:48:47.293 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.295 23450 INFO migrate.versioning.api [-] 235 -> 236...
2015-10-20 08:48:47.322 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.323 23450 INFO migrate.versioning.api [-] 236 -> 237...
2015-10-20 08:48:47.347 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.348 23450 INFO migrate.versioning.api [-] 237 -> 238...
2015-10-20 08:48:47.373 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.374 23450 INFO migrate.versioning.api [-] 238 -> 239...
2015-10-20 08:48:47.397 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.398 23450 INFO migrate.versioning.api [-] 239 -> 240...
2015-10-20 08:48:47.422 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.423 23450 INFO migrate.versioning.api [-] 240 -> 241...
2015-10-20 08:48:47.447 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.448 23450 INFO migrate.versioning.api [-] 241 -> 242...
2015-10-20 08:48:47.472 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.473 23450 INFO migrate.versioning.api [-] 242 -> 243...
2015-10-20 08:48:47.497 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.498 23450 INFO migrate.versioning.api [-] 243 -> 244...
2015-10-20 08:48:47.605 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:47.606 23450 INFO migrate.versioning.api [-] 244 -> 245...
2015-10-20 08:48:48.207 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:48.208 23450 INFO migrate.versioning.api [-] 245 -> 246...
2015-10-20 08:48:48.349 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:48.350 23450 INFO migrate.versioning.api [-] 246 -> 247...
2015-10-20 08:48:48.758 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:48.759 23450 INFO migrate.versioning.api [-] 247 -> 248...
2015-10-20 08:48:48.794 23450 INFO 248_add_expire_reservations_index [-] Skipped adding reservations_deleted_expire_idx because an equivalent index already exists.
2015-10-20 08:48:48.816 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:48.817 23450 INFO migrate.versioning.api [-] 248 -> 249...
2015-10-20 08:48:48.950 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:48.951 23450 INFO migrate.versioning.api [-] 249 -> 250...
2015-10-20 08:48:49.058 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:49.059 23450 INFO migrate.versioning.api [-] 250 -> 251...
2015-10-20 08:48:49.266 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:49.267 23450 INFO migrate.versioning.api [-] 251 -> 252...
2015-10-20 08:48:49.683 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:49.684 23450 INFO migrate.versioning.api [-] 252 -> 253...
2015-10-20 08:48:49.900 23450 INFO migrate.versioning.api [-] done
2015-10-20 08:48:49.901 23450 INFO migrate.versioning.api [-] 253 -> 254...
2015-10-20 08:48:50.117 23450 INFO migrate.versioning.api [-] done

View File

@ -0,0 +1,170 @@
2015-10-20 11:13:40.740 13290 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=783f24a2-4c5a-4492-ae72-e839060b82e9&title=instance1(ecf81ced-4799-4022-a7c8-14069046afd8) HTTP/1.1" 200 -
2015-10-20 11:13:41.109 13291 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/base.css HTTP/1.1" 200 -
2015-10-20 11:13:41.396 13292 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/util.js HTTP/1.1" 200 -
2015-10-20 11:13:41.881 13296 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/webutil.js HTTP/1.1" 200 -
2015-10-20 11:13:41.892 13297 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/base64.js HTTP/1.1" 200 -
2015-10-20 11:13:41.914 13298 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/websock.js HTTP/1.1" 200 -
2015-10-20 11:13:41.937 13300 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/des.js HTTP/1.1" 200 -
2015-10-20 11:13:42.131 13299 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keysymdef.js HTTP/1.1" 200 -
2015-10-20 11:13:42.133 13303 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/input.js HTTP/1.1" 200 -
2015-10-20 11:13:42.135 13301 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keyboard.js HTTP/1.1" 200 -
2015-10-20 11:13:42.426 13304 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/display.js HTTP/1.1" 200 -
2015-10-20 11:13:42.432 13307 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keysym.js HTTP/1.1" 200 -
2015-10-20 11:13:42.437 13305 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/jsunzip.js HTTP/1.1" 200 -
2015-10-20 11:13:42.633 13306 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/rfb.js HTTP/1.1" 200 -
2015-10-20 11:13:42.910 13308 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=783f24a2-4c5a-4492-ae72-e839060b82e9&title=instance1(ecf81ced-4799-4022-a7c8-14069046afd8) HTTP/1.1" 200 -
2015-10-20 11:13:43.551 13309 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/rfb.js HTTP/1.1" 200 -
2015-10-20 11:13:44.168 13314 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 11:13:44.172 13314 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 11:13:44.173 13314 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 11:13:44.182 13315 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /favicon.ico HTTP/1.1" 404 -
2015-10-20 11:13:44.193 13314 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.262 13314 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.277 13314 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.326 13314 INFO oslo.messaging._drivers.impl_rabbit [req-36677455-5b22-43e8-958a-c9c143b66e2b ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:13:44.693 13316 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /favicon.ico HTTP/1.1" 404 -
2015-10-20 11:13:44.763 13314 INFO nova.console.websocketproxy [req-36677455-5b22-43e8-958a-c9c143b66e2b None] connect info: {u'instance_uuid': u'ecf81ced-4799-4022-a7c8-14069046afd8', u'internal_access_path': None, u'last_activity_at': 1445354018.437952, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'783f24a2-4c5a-4492-ae72-e839060b82e9', u'port': u'5900'}
2015-10-20 11:13:44.765 13314 INFO nova.console.websocketproxy [req-36677455-5b22-43e8-958a-c9c143b66e2b None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 11:42:53.442 18853 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=25a866d9-6802-4c59-8901-b20d5d3d909c&title=instance1(456d8388-2014-4935-9af5-adeaca222a9b) HTTP/1.1" 200 -
2015-10-20 11:42:53.826 18854 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 11:42:53.831 18854 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 11:42:53.832 18854 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 11:42:53.853 18854 INFO oslo.messaging._drivers.impl_rabbit [req-3546330a-7d92-4c91-8b12-a7c356131138 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:53.939 18854 INFO oslo.messaging._drivers.impl_rabbit [req-3546330a-7d92-4c91-8b12-a7c356131138 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:53.955 18854 INFO oslo.messaging._drivers.impl_rabbit [req-3546330a-7d92-4c91-8b12-a7c356131138 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:54.013 18854 INFO oslo.messaging._drivers.impl_rabbit [req-3546330a-7d92-4c91-8b12-a7c356131138 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:42:54.528 18854 INFO nova.console.websocketproxy [req-3546330a-7d92-4c91-8b12-a7c356131138 None] connect info: {u'instance_uuid': u'456d8388-2014-4935-9af5-adeaca222a9b', u'internal_access_path': None, u'last_activity_at': 1445355771.899593, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'25a866d9-6802-4c59-8901-b20d5d3d909c', u'port': u'5900'}
2015-10-20 11:42:54.530 18854 INFO nova.console.websocketproxy [req-3546330a-7d92-4c91-8b12-a7c356131138 None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 11:43:03.748 18896 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=25a866d9-6802-4c59-8901-b20d5d3d909c&title=instance1(456d8388-2014-4935-9af5-adeaca222a9b) HTTP/1.1" 200 -
2015-10-20 11:43:04.185 18899 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 11:43:04.190 18899 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 11:43:04.191 18899 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 11:43:04.231 18899 INFO oslo.messaging._drivers.impl_rabbit [req-b10f6987-ca9c-4632-99e9-7b33686724ab ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:43:04.330 18899 INFO oslo.messaging._drivers.impl_rabbit [req-b10f6987-ca9c-4632-99e9-7b33686724ab ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:43:04.359 18899 INFO oslo.messaging._drivers.impl_rabbit [req-b10f6987-ca9c-4632-99e9-7b33686724ab ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 11:43:04.443 18899 INFO oslo.messaging._drivers.impl_rabbit [req-b10f6987-ca9c-4632-99e9-7b33686724ab ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 11:43:04.954 18899 INFO nova.console.websocketproxy [req-b10f6987-ca9c-4632-99e9-7b33686724ab None] connect info: {u'instance_uuid': u'456d8388-2014-4935-9af5-adeaca222a9b', u'internal_access_path': None, u'last_activity_at': 1445355771.899593, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'25a866d9-6802-4c59-8901-b20d5d3d909c', u'port': u'5900'}
2015-10-20 11:43:04.956 18899 INFO nova.console.websocketproxy [req-b10f6987-ca9c-4632-99e9-7b33686724ab None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 13:52:00.589 27505 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=44c9f4cb-d246-40c2-975b-b6165ea93de5&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 13:52:01.023 27508 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 13:52:01.027 27508 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 13:52:01.028 27508 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 13:52:01.043 27508 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.107 27508 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.129 27508 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.215 27508 INFO oslo.messaging._drivers.impl_rabbit [req-7fef22aa-a313-4313-a246-76d4991f7eda ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:01.912 27508 INFO nova.console.websocketproxy [req-7fef22aa-a313-4313-a246-76d4991f7eda None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445363517.963422, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'44c9f4cb-d246-40c2-975b-b6165ea93de5', u'port': u'5900'}
2015-10-20 13:52:01.915 27508 INFO nova.console.websocketproxy [req-7fef22aa-a313-4313-a246-76d4991f7eda None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 13:52:03.853 27534 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=44c9f4cb-d246-40c2-975b-b6165ea93de5&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 13:52:04.394 27535 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 13:52:04.398 27535 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 13:52:04.399 27535 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 13:52:04.413 27535 INFO oslo.messaging._drivers.impl_rabbit [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:04.479 27535 INFO oslo.messaging._drivers.impl_rabbit [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:04.495 27535 INFO oslo.messaging._drivers.impl_rabbit [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:04.553 27535 INFO oslo.messaging._drivers.impl_rabbit [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:52:05.032 27535 INFO nova.console.websocketproxy [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445363517.963422, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'44c9f4cb-d246-40c2-975b-b6165ea93de5', u'port': u'5900'}
2015-10-20 13:52:05.035 27535 INFO nova.console.websocketproxy [req-1615a2ea-1a1d-4e3a-9f3d-8e8c91e666a8 None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:14:42.509 32298 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=026e99e9-a55f-4fea-86d1-e2462e3571fb&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 14:14:43.110 32301 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:14:43.113 32301 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:14:43.114 32301 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:14:43.127 32301 INFO oslo.messaging._drivers.impl_rabbit [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:43.190 32301 INFO oslo.messaging._drivers.impl_rabbit [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:43.205 32301 INFO oslo.messaging._drivers.impl_rabbit [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:43.256 32301 INFO oslo.messaging._drivers.impl_rabbit [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:43.701 32301 INFO nova.console.websocketproxy [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445364879.822647, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'026e99e9-a55f-4fea-86d1-e2462e3571fb', u'port': u'5900'}
2015-10-20 14:14:43.702 32301 INFO nova.console.websocketproxy [req-7c4e009a-1a34-4c61-a357-8130af05f4b6 None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:14:51.278 32322 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=026e99e9-a55f-4fea-86d1-e2462e3571fb&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 14:14:51.686 32326 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:14:51.690 32326 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:14:51.692 32326 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:14:51.707 32326 INFO oslo.messaging._drivers.impl_rabbit [req-aedef96c-fd58-420a-999d-62752134f405 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:51.792 32326 INFO oslo.messaging._drivers.impl_rabbit [req-aedef96c-fd58-420a-999d-62752134f405 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:51.823 32326 INFO oslo.messaging._drivers.impl_rabbit [req-aedef96c-fd58-420a-999d-62752134f405 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:51.884 32326 INFO oslo.messaging._drivers.impl_rabbit [req-aedef96c-fd58-420a-999d-62752134f405 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:14:52.262 32326 INFO nova.console.websocketproxy [req-aedef96c-fd58-420a-999d-62752134f405 None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445364879.822647, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'026e99e9-a55f-4fea-86d1-e2462e3571fb', u'port': u'5900'}
2015-10-20 14:14:52.263 32326 INFO nova.console.websocketproxy [req-aedef96c-fd58-420a-999d-62752134f405 None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:20:00.866 1366 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=d9f41bbd-cf9a-4594-9a17-735c7286b3ba&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 14:20:01.322 1369 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:20:01.327 1369 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:20:01.329 1369 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:20:01.350 1369 INFO oslo.messaging._drivers.impl_rabbit [req-b4c962de-e181-434a-bb88-1fec4b1e3925 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:01.423 1369 INFO oslo.messaging._drivers.impl_rabbit [req-b4c962de-e181-434a-bb88-1fec4b1e3925 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:01.440 1369 INFO oslo.messaging._drivers.impl_rabbit [req-b4c962de-e181-434a-bb88-1fec4b1e3925 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:01.498 1369 INFO oslo.messaging._drivers.impl_rabbit [req-b4c962de-e181-434a-bb88-1fec4b1e3925 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:01.907 1369 INFO nova.console.websocketproxy [req-b4c962de-e181-434a-bb88-1fec4b1e3925 None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445365198.392311, u'console_type': u'novnc', u'host': u'hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com', u'token': u'd9f41bbd-cf9a-4594-9a17-735c7286b3ba', u'port': u'5900'}
2015-10-20 14:20:01.909 1369 INFO nova.console.websocketproxy [req-b4c962de-e181-434a-bb88-1fec4b1e3925 None] connecting to: hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:20:03.893 1384 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=d9f41bbd-cf9a-4594-9a17-735c7286b3ba&title=instance1(92ff693e-82c2-40d4-9b96-0c5a614ab218) HTTP/1.1" 200 -
2015-10-20 14:20:04.360 1393 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:20:04.365 1393 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:20:04.367 1393 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:20:04.384 1393 INFO oslo.messaging._drivers.impl_rabbit [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:04.480 1393 INFO oslo.messaging._drivers.impl_rabbit [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:04.505 1393 INFO oslo.messaging._drivers.impl_rabbit [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:04.586 1393 INFO oslo.messaging._drivers.impl_rabbit [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:20:05.195 1393 INFO nova.console.websocketproxy [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 None] connect info: {u'instance_uuid': u'92ff693e-82c2-40d4-9b96-0c5a614ab218', u'internal_access_path': None, u'last_activity_at': 1445365198.392311, u'console_type': u'novnc', u'host': u'hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com', u'token': u'd9f41bbd-cf9a-4594-9a17-735c7286b3ba', u'port': u'5900'}
2015-10-20 14:20:05.204 1393 INFO nova.console.websocketproxy [req-1a89a9b6-9cbc-4125-8c02-50b884aa6579 None] connecting to: hp-ms-01-c30.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:40:58.244 5832 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=ecf1364f-e246-4d4e-9fc8-a5b58503255d&title=instance1(a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) HTTP/1.1" 200 -
2015-10-20 14:40:58.818 5835 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:40:58.821 5835 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:40:58.822 5835 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:40:58.836 5835 INFO oslo.messaging._drivers.impl_rabbit [req-0d809498-8121-4726-8a34-89d09a6d0c3d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:40:58.898 5835 INFO oslo.messaging._drivers.impl_rabbit [req-0d809498-8121-4726-8a34-89d09a6d0c3d ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:40:58.914 5835 INFO oslo.messaging._drivers.impl_rabbit [req-0d809498-8121-4726-8a34-89d09a6d0c3d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:40:58.967 5835 INFO oslo.messaging._drivers.impl_rabbit [req-0d809498-8121-4726-8a34-89d09a6d0c3d ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:40:59.377 5835 INFO nova.console.websocketproxy [req-0d809498-8121-4726-8a34-89d09a6d0c3d None] connect info: {u'instance_uuid': u'a18a5824-4215-4e24-bcfc-cb9f89f6bcbd', u'internal_access_path': None, u'last_activity_at': 1445366456.148141, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'ecf1364f-e246-4d4e-9fc8-a5b58503255d', u'port': u'5900'}
2015-10-20 14:40:59.379 5835 INFO nova.console.websocketproxy [req-0d809498-8121-4726-8a34-89d09a6d0c3d None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:41:00.730 5836 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=ecf1364f-e246-4d4e-9fc8-a5b58503255d&title=instance1(a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) HTTP/1.1" 200 -
2015-10-20 14:41:01.208 5841 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:41:01.211 5841 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:41:01.212 5841 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:41:01.225 5841 INFO oslo.messaging._drivers.impl_rabbit [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:41:01.284 5841 INFO oslo.messaging._drivers.impl_rabbit [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:41:01.300 5841 INFO oslo.messaging._drivers.impl_rabbit [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:41:01.355 5841 INFO oslo.messaging._drivers.impl_rabbit [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:41:01.828 5841 INFO nova.console.websocketproxy [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 None] connect info: {u'instance_uuid': u'a18a5824-4215-4e24-bcfc-cb9f89f6bcbd', u'internal_access_path': None, u'last_activity_at': 1445366456.148141, u'console_type': u'novnc', u'host': u'hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com', u'token': u'ecf1364f-e246-4d4e-9fc8-a5b58503255d', u'port': u'5900'}
2015-10-20 14:41:01.830 5841 INFO nova.console.websocketproxy [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 None] connecting to: hp-ms-01-c29.moonshot1.lab.eng.rdu.redhat.com:5900
2015-10-20 14:47:30.549 5841 INFO nova.console.websocketproxy [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 None] handler exception: [Errno 107] Transport endpoint is not connected
2015-10-20 14:47:30.599 5841 INFO nova.console.websocketproxy [req-a57350bc-0c5c-4916-b5c5-f8a1140f1d87 None] Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/websockify/websocket.py", line 711, in top_new_client
self.new_client()
File "/usr/lib/python2.7/site-packages/nova/console/websocketproxy.py", line 180, in new_client
self.new_websocket_client()
File "/usr/lib/python2.7/site-packages/nova/console/websocketproxy.py", line 139, in new_websocket_client
tsock.shutdown(socket.SHUT_RDWR)
File "/usr/lib64/python2.7/socket.py", line 224, in meth
return getattr(self._sock,name)(*args)
error: [Errno 107] Transport endpoint is not connected
2015-10-20 14:47:44.758 7277 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /vnc_auto.html?token=ecf1364f-e246-4d4e-9fc8-a5b58503255d&title=instance1(a18a5824-4215-4e24-bcfc-cb9f89f6bcbd) HTTP/1.1" 200 -
2015-10-20 14:47:45.203 7280 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/base.css HTTP/1.1" 200 -
2015-10-20 14:47:45.209 7281 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/util.js HTTP/1.1" 200 -
2015-10-20 14:47:45.805 7284 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/webutil.js HTTP/1.1" 200 -
2015-10-20 14:47:45.821 7285 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/websock.js HTTP/1.1" 200 -
2015-10-20 14:47:45.852 7287 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keysymdef.js HTTP/1.1" 200 -
2015-10-20 14:47:45.871 7286 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/base64.js HTTP/1.1" 200 -
2015-10-20 14:47:45.875 7288 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/des.js HTTP/1.1" 200 -
2015-10-20 14:47:45.890 7289 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keyboard.js HTTP/1.1" 200 -
2015-10-20 14:47:46.124 7291 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/input.js HTTP/1.1" 200 -
2015-10-20 14:47:46.283 7292 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/display.js HTTP/1.1" 200 -
2015-10-20 14:47:46.302 7293 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/jsunzip.js HTTP/1.1" 200 -
2015-10-20 14:47:46.414 7295 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/keysym.js HTTP/1.1" 200 -
2015-10-20 14:47:47.010 7294 INFO nova.console.websocketproxy [-] 10.10.52.115: "GET /include/rfb.js HTTP/1.1" 200 -
2015-10-20 14:47:47.491 7301 INFO nova.console.websocketproxy [-] 10.10.52.115: Plain non-SSL (ws://) WebSocket connection
2015-10-20 14:47:47.495 7301 INFO nova.console.websocketproxy [-] 10.10.52.115: Version hybi-13, base64: 'False'
2015-10-20 14:47:47.496 7301 INFO nova.console.websocketproxy [-] 10.10.52.115: Path: '/websockify'
2015-10-20 14:47:47.513 7301 INFO oslo.messaging._drivers.impl_rabbit [req-f49d4d6c-0f90-41df-82aa-df5657b78423 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:47:47.651 7301 INFO oslo.messaging._drivers.impl_rabbit [req-f49d4d6c-0f90-41df-82aa-df5657b78423 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:47:47.677 7301 INFO oslo.messaging._drivers.impl_rabbit [req-f49d4d6c-0f90-41df-82aa-df5657b78423 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 14:47:47.769 7301 INFO oslo.messaging._drivers.impl_rabbit [req-f49d4d6c-0f90-41df-82aa-df5657b78423 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 14:47:47.823 7301 INFO nova.console.websocketproxy [req-f49d4d6c-0f90-41df-82aa-df5657b78423 None] handler exception: Invalid Token
2015-10-20 14:47:47.830 7301 INFO nova.console.websocketproxy [req-f49d4d6c-0f90-41df-82aa-df5657b78423 None] Traceback (most recent call last):
File "/usr/lib/python2.7/site-packages/websockify/websocket.py", line 711, in top_new_client
self.new_client()
File "/usr/lib/python2.7/site-packages/nova/console/websocketproxy.py", line 180, in new_client
self.new_websocket_client()
File "/usr/lib/python2.7/site-packages/nova/console/websocketproxy.py", line 86, in new_websocket_client
raise Exception(_("Invalid Token"))
Exception: Invalid Token

View File

@ -0,0 +1,84 @@
2015-10-20 09:03:07.631 27971 AUDIT nova.service [-] Starting scheduler node (version 2014.2.3-31.el7ost)
2015-10-20 09:03:11.891 27971 INFO oslo.messaging._drivers.impl_rabbit [req-cb73406d-94c9-4f43-8e34-ae8ba93fc8ee ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:03:11.970 27971 INFO oslo.messaging._drivers.impl_rabbit [req-cb73406d-94c9-4f43-8e34-ae8ba93fc8ee ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:57.179 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 09:10:57.179 27971 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 09:10:57.191 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:10:58.194 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:10:58.330 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 09:10:59.333 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:00.334 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:00.398 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 09:11:03.400 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 09:11:04.406 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:11:04.847 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:23.158 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:23.158 27971 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:23.162 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:23.212 27971 WARNING nova.openstack.common.loopingcall [-] task <bound method DbDriver._report_state of <nova.servicegroup.drivers.db.DbDriver object at 0x30ddb90>> run outlasted interval by 15.93 sec
2015-10-20 10:17:24.165 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:24.282 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:19.179 27971 INFO oslo.messaging._drivers.impl_rabbit [req-05632eb8-480d-4988-86ec-066cfdd0d802 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:19.230 27971 INFO oslo.messaging._drivers.impl_rabbit [req-05632eb8-480d-4988-86ec-066cfdd0d802 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:25.642 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 323, in drain_events
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit return amqp_method(channel, args)
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 529, in _close
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit (class_id, method_id), ConnectionError)
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit ConnectionForced: (0, 0): (320) CONNECTION_FORCED - broker forced connection closure with reason 'shutdown'
2015-10-20 12:20:25.642 27971 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 12:20:25.646 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:20:26.648 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:26.719 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:20:27.721 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:20:28.723 27971 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:28.776 27971 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:20:29.647 27971 INFO nova.openstack.common.service [-] Caught SIGTERM, exiting
2015-10-20 12:41:00.634 1420 AUDIT nova.service [-] Starting scheduler node (version 2014.2.3-31.el7ost)
2015-10-20 12:41:15.453 1420 WARNING oslo.db.sqlalchemy.session [req-e320f72b-3c64-4817-a3af-761ff85baf91 ] SQL connection failed. -1 attempts left.
2015-10-20 12:41:25.483 1420 WARNING oslo.db.sqlalchemy.session [req-e320f72b-3c64-4817-a3af-761ff85baf91 ] SQL connection failed. -2 attempts left.
2015-10-20 12:41:39.252 1420 INFO oslo.messaging._drivers.impl_rabbit [req-e320f72b-3c64-4817-a3af-761ff85baf91 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:39.368 1420 INFO oslo.messaging._drivers.impl_rabbit [req-e320f72b-3c64-4817-a3af-761ff85baf91 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 13:42:12.373 1420 INFO oslo.messaging._drivers.impl_rabbit [req-01e605db-df9a-4a31-99d5-044a6f38375c ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 13:42:12.428 1420 INFO oslo.messaging._drivers.impl_rabbit [req-01e605db-df9a-4a31-99d5-044a6f38375c ] Connected to AMQP server on 10.12.27.29:5672

View File

@ -0,0 +1,5 @@
2015-10-29 10:53:08.147 29022 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Started (Lifecycle Event)
2015-10-29 10:53:12.650 29022 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Resumed (Lifecycle Event)
2015-10-29 10:53:13.672 29022 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Resumed (Lifecycle Event)
2015-10-29 10:54:27.609 29022 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Paused (Lifecycle Event)
2015-10-29 10:54:28.969 29022 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Stopped (Lifecycle Event)

View File

@ -0,0 +1,7 @@
2015-10-29 10:52:24.635 tcpdump DEBUG tcpdump: WARNING: br-int: no IPv4 address assigned
2015-10-29 10:52:24.674 tcpdump DEBUG tcpdump: verbose output suppressed, use -v or -vv for full protocol decode
2015-10-29 10:52:24.678 tcpdump DEBUG listening on br-int, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:53:42.021 tcpdump DEBUG 10:53:42.016466 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype 802.1Q (0x8100), length 46: vlan 1, p 0, ethertype ARP, Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:43.020 tcpdump DEBUG 10:53:43.017641 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype 802.1Q (0x8100), length 46: vlan 1, p 0, ethertype ARP, Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:44.025 tcpdump DEBUG 10:53:44.019591 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype 802.1Q (0x8100), length 46: vlan 1, p 0, ethertype ARP, Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:45.080 tcpdump DEBUG 10:53:45.077082 fa:16:3e:c5:24:11 > Broadcast, ethertype 802.1Q (0x8100), length 46: vlan 1, p 0, ethertype ARP, Request who-has 192.168.200.6 tell 192.168.200.1, length 28

View File

@ -0,0 +1,362 @@
2015-10-20 09:19:58.269 12621 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:19:58.272 12621 INFO neutron.common.config [-] /usr/bin/neutron-dhcp-agent version 2014.2.3-19.el7ost
2015-10-20 09:19:58.360 12621 INFO oslo.messaging._drivers.impl_rabbit [req-d55b9dab-8824-428a-acd3-d09fb943c4a6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:19:58.413 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:20:03.485 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:20:03.488 12621 INFO oslo.messaging._drivers.impl_rabbit [req-d55b9dab-8824-428a-acd3-d09fb943c4a6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:20:03.505 12621 INFO oslo.messaging._drivers.impl_rabbit [req-d55b9dab-8824-428a-acd3-d09fb943c4a6 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:20:03.576 12621 INFO oslo.messaging._drivers.impl_rabbit [req-d55b9dab-8824-428a-acd3-d09fb943c4a6 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:20:03.582 12621 INFO neutron.agent.dhcp_agent [-] DHCP agent started
2015-10-20 09:21:03.597 12621 ERROR neutron.agent.dhcp_agent [req-d55b9dab-8824-428a-acd3-d09fb943c4a6 None] Failed reporting state!
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 66960e7dcbe44475a1e06cb307a88a3f.
2015-10-20 09:21:03.597 12621 TRACE neutron.agent.dhcp_agent
2015-10-20 09:21:03.610 12621 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 35.253138 sec
2015-10-20 09:22:03.628 12621 ERROR neutron.agent.dhcp_agent [req-c948e365-354e-4539-bebb-dba9c2890233 None] Failed reporting state!
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID c685aef6312e4fe8a6514bc31c3a8089.
2015-10-20 09:22:03.628 12621 TRACE neutron.agent.dhcp_agent
2015-10-20 09:22:03.632 12621 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.020132 sec
2015-10-20 09:23:03.646 12621 ERROR neutron.agent.dhcp_agent [req-d9889027-8d27-425d-a16a-867a3b00761b None] Failed reporting state!
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 40044c67306e4f0680675d51427aaea5.
2015-10-20 09:23:03.646 12621 TRACE neutron.agent.dhcp_agent
2015-10-20 09:23:03.650 12621 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.016569 sec
2015-10-20 09:24:03.680 12621 ERROR neutron.agent.dhcp_agent [req-e68ba5fe-d250-4166-af66-934b84065974 None] Failed reporting state!
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 9979354008e348fc9b429fd679484d54.
2015-10-20 09:24:03.680 12621 TRACE neutron.agent.dhcp_agent
2015-10-20 09:24:03.686 12621 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.034856 sec
2015-10-20 09:24:04.279 12621 INFO neutron.agent.dhcp_agent [req-5d2c28cb-af07-40e7-a417-a3bb773cefaa None] Synchronizing state
2015-10-20 09:24:05.172 12621 INFO neutron.agent.dhcp_agent [req-5d2c28cb-af07-40e7-a417-a3bb773cefaa None] Synchronizing state complete
2015-10-20 10:17:04.071 12621 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:04.071 12621 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:04.078 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:05.080 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:10.120 12621 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: timed out. Trying again in 1 seconds.
2015-10-20 10:17:11.121 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:12.122 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:12.269 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:16.805 12621 ERROR oslo.messaging._drivers.impl_rabbit [req-f8d42606-cd5d-4ac2-8dbf-8e07e9b51eb9 ] Failed to publish message to topic 'q-plugin': Socket closed
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 240, in _wait_method
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit self.method_reader.read_method()
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit IOError: Socket closed
2015-10-20 10:17:16.805 12621 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:16.813 12621 INFO oslo.messaging._drivers.impl_rabbit [req-f8d42606-cd5d-4ac2-8dbf-8e07e9b51eb9 ] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:17.814 12621 INFO oslo.messaging._drivers.impl_rabbit [req-f8d42606-cd5d-4ac2-8dbf-8e07e9b51eb9 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:17.893 12621 INFO oslo.messaging._drivers.impl_rabbit [req-f8d42606-cd5d-4ac2-8dbf-8e07e9b51eb9 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:43.847 12621 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:33:43.847 12621 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:33:43.851 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:44.854 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:44.907 12621 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 1 seconds.
2015-10-20 10:33:45.910 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:46.912 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:46.946 12621 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 3 seconds.
2015-10-20 10:33:49.951 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:51.164 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:51.282 12621 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:34:03.717 12621 ERROR oslo.messaging._drivers.impl_rabbit [req-2b7953c8-0fbc-4ab6-9ae1-932613f675ab ] Failed to publish message to topic 'q-plugin': [Errno 110] Connection timed out
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:34:03.717 12621 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:34:03.722 12621 INFO oslo.messaging._drivers.impl_rabbit [req-2b7953c8-0fbc-4ab6-9ae1-932613f675ab ] Delaying reconnect for 1.0 seconds...
2015-10-20 10:34:04.723 12621 INFO oslo.messaging._drivers.impl_rabbit [req-2b7953c8-0fbc-4ab6-9ae1-932613f675ab ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:34:04.781 12621 INFO oslo.messaging._drivers.impl_rabbit [req-2b7953c8-0fbc-4ab6-9ae1-932613f675ab ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:25.718 12621 ERROR oslo.messaging._drivers.impl_rabbit [req-b8973f0a-f5cf-413f-9294-cc37bbdf0cb4 ] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:54:25.718 12621 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:54:25.722 12621 INFO oslo.messaging._drivers.impl_rabbit [req-b8973f0a-f5cf-413f-9294-cc37bbdf0cb4 ] Delaying reconnect for 1.0 seconds...
2015-10-20 10:54:26.723 12621 INFO oslo.messaging._drivers.impl_rabbit [req-b8973f0a-f5cf-413f-9294-cc37bbdf0cb4 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:54:26.829 12621 INFO oslo.messaging._drivers.impl_rabbit [req-b8973f0a-f5cf-413f-9294-cc37bbdf0cb4 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:16.922 12621 INFO neutron.openstack.common.service [req-45fbcc5f-493d-4770-bfe5-ce37196d789b None] Caught SIGTERM, exiting
2015-10-20 12:40:39.966 1551 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:40:39.996 1551 INFO neutron.common.config [-] /usr/bin/neutron-dhcp-agent version 2014.2.3-19.el7ost
2015-10-20 12:40:40.147 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:40.273 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:40.331 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:40:40.333 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:40:41.334 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:41.335 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:42.336 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:42.372 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:40:42.374 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:42.409 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:40:45.374 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:45.411 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:46.377 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:46.420 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 5 seconds.
2015-10-20 12:40:46.421 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:46.457 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 5 seconds.
2015-10-20 12:40:51.423 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:51.458 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:52.434 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:52.469 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 7 seconds.
2015-10-20 12:40:52.470 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:52.506 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 7 seconds.
2015-10-20 12:40:59.472 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:59.507 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:00.475 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:00.510 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 9 seconds.
2015-10-20 12:41:00.512 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:00.547 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 9 seconds.
2015-10-20 12:41:09.516 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:09.548 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:10.521 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:10.556 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:10.592 1551 ERROR oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 11 seconds.
2015-10-20 12:41:10.593 1551 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 11 seconds.
2015-10-20 12:41:21.599 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:21.600 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:22.601 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.636 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.699 1551 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.702 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.725 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.808 1551 INFO oslo.messaging._drivers.impl_rabbit [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.821 1551 INFO neutron.agent.dhcp_agent [-] DHCP agent started
2015-10-20 12:42:22.838 1551 ERROR neutron.agent.dhcp_agent [req-5ff37e5a-d862-4c86-ada7-a59e0bb5c325 None] Failed reporting state!
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent Traceback (most recent call last):
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/dhcp_agent.py", line 595, in _report_state
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent self.state_rpc.report_state(ctx, self.agent_state, self.use_call)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent return self.call(context, msg)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent return method(*args, **kwargs)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent context, msg, rpc_method='call', **kwargs)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent return func(context, msg['method'], **msg['args'])
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent retry=self.retry)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent timeout=timeout, retry=retry)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent retry=retry)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent self._raise_timeout_exception(msg_id)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent MessagingTimeout: Timed out waiting for a reply to message ID 439ce77081a24c4cb028378670409193.
2015-10-20 12:42:22.838 1551 TRACE neutron.agent.dhcp_agent
2015-10-20 12:42:22.881 1551 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 72.737889 sec
2015-10-20 12:42:22.963 1551 INFO neutron.agent.dhcp_agent [req-ad390172-6dac-4811-a27b-0b0b1d6522d1 None] Synchronizing state
2015-10-20 12:42:32.220 1551 INFO neutron.agent.dhcp_agent [req-ad390172-6dac-4811-a27b-0b0b1d6522d1 None] Synchronizing state complete

View File

@ -0,0 +1,650 @@
2015-10-29 10:52:32.452 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:32.456 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:32.460 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:32.464 ovs-fdb DEBUG cookie=0x0, duration=11.726s, table=20, n_packets=49, n_bytes=4690, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:33.483 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:33.487 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:33.491 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:33.498 ovs-fdb DEBUG cookie=0x0, duration=12.760s, table=20, n_packets=53, n_bytes=5082, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:34.513 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:34.518 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:34.522 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:34.526 ovs-fdb DEBUG cookie=0x0, duration=13.786s, table=20, n_packets=57, n_bytes=5474, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:35.535 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:35.539 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:35.543 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:35.548 ovs-fdb DEBUG cookie=0x0, duration=14.811s, table=20, n_packets=61, n_bytes=5866, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:36.560 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:36.564 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:36.568 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:36.573 ovs-fdb DEBUG cookie=0x0, duration=15.835s, table=20, n_packets=65, n_bytes=6258, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:37.585 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:37.590 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:37.594 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:37.599 ovs-fdb DEBUG cookie=0x0, duration=16.860s, table=20, n_packets=69, n_bytes=6650, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:38.612 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:38.624 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:38.628 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:38.633 ovs-fdb DEBUG cookie=0x0, duration=17.889s, table=20, n_packets=73, n_bytes=7042, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:39.641 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:39.645 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:39.649 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:39.656 ovs-fdb DEBUG cookie=0x0, duration=18.918s, table=20, n_packets=77, n_bytes=7434, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:40.669 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:40.673 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:40.677 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:40.691 ovs-fdb DEBUG cookie=0x0, duration=19.952s, table=20, n_packets=81, n_bytes=7826, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:41.703 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:41.706 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:41.710 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:41.717 ovs-fdb DEBUG cookie=0x0, duration=20.979s, table=20, n_packets=85, n_bytes=8218, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:42.732 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:42.736 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:42.740 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:42.748 ovs-fdb DEBUG cookie=0x0, duration=22.009s, table=20, n_packets=89, n_bytes=8610, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:43.760 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:43.764 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:43.768 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:43.773 ovs-fdb DEBUG cookie=0x0, duration=23.035s, table=20, n_packets=93, n_bytes=9002, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:44.787 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:44.794 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:44.799 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:44.817 ovs-fdb DEBUG cookie=0x0, duration=24.078s, table=20, n_packets=97, n_bytes=9394, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:45.830 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:45.833 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:45.837 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:45.843 ovs-fdb DEBUG cookie=0x0, duration=25.105s, table=20, n_packets=101, n_bytes=9786, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:46.859 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:46.864 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:52:46.868 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:52:46.873 ovs-fdb DEBUG cookie=0x0, duration=26.133s, table=20, n_packets=105, n_bytes=10178, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:47.886 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:47.890 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:47.893 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:47.898 ovs-fdb DEBUG cookie=0x0, duration=27.160s, table=20, n_packets=111, n_bytes=10766, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:48.910 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:48.914 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:48.918 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:48.925 ovs-fdb DEBUG cookie=0x0, duration=28.187s, table=20, n_packets=115, n_bytes=11158, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:49.937 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:49.941 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:49.945 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:49.949 ovs-fdb DEBUG cookie=0x0, duration=29.212s, table=20, n_packets=119, n_bytes=11550, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:50.963 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:50.967 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:50.970 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:50.975 ovs-fdb DEBUG cookie=0x0, duration=30.237s, table=20, n_packets=123, n_bytes=11942, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:51.987 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:51.992 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:51.995 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:52.000 ovs-fdb DEBUG cookie=0x0, duration=31.262s, table=20, n_packets=127, n_bytes=12334, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:53.019 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:53.023 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:53.027 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:53.033 ovs-fdb DEBUG cookie=0x0, duration=32.295s, table=20, n_packets=131, n_bytes=12726, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:54.044 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:54.048 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:54.051 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:54.057 ovs-fdb DEBUG cookie=0x0, duration=33.320s, table=20, n_packets=135, n_bytes=13118, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:55.069 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:55.078 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:55.082 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:55.086 ovs-fdb DEBUG cookie=0x0, duration=34.345s, table=20, n_packets=139, n_bytes=13510, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:56.094 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:56.098 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:56.101 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:56.107 ovs-fdb DEBUG cookie=0x0, duration=35.369s, table=20, n_packets=144, n_bytes=13944, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:57.120 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:57.130 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:57.134 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:57.138 ovs-fdb DEBUG cookie=0x0, duration=36.398s, table=20, n_packets=148, n_bytes=14336, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:58.148 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:58.152 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:58.156 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:58.161 ovs-fdb DEBUG cookie=0x0, duration=37.424s, table=20, n_packets=152, n_bytes=14728, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:52:59.175 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:52:59.179 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:52:59.183 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:52:59.187 ovs-fdb DEBUG cookie=0x0, duration=38.448s, table=20, n_packets=156, n_bytes=15120, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:00.201 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:00.205 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:00.209 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:00.217 ovs-fdb DEBUG cookie=0x0, duration=39.479s, table=20, n_packets=160, n_bytes=15512, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:01.230 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:01.234 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:01.238 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:01.242 ovs-fdb DEBUG cookie=0x0, duration=40.504s, table=20, n_packets=164, n_bytes=15904, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:02.254 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:02.258 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:02.262 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:02.267 ovs-fdb DEBUG cookie=0x0, duration=41.529s, table=20, n_packets=168, n_bytes=16296, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:03.280 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:03.284 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:03.287 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:03.292 ovs-fdb DEBUG cookie=0x0, duration=42.554s, table=20, n_packets=172, n_bytes=16688, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:04.304 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:04.309 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:04.312 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:04.317 ovs-fdb DEBUG cookie=0x0, duration=43.579s, table=20, n_packets=176, n_bytes=17080, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:05.330 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:05.334 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:05.338 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:05.348 ovs-fdb DEBUG cookie=0x0, duration=44.608s, table=20, n_packets=180, n_bytes=17472, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:06.369 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:06.374 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:06.378 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:06.382 ovs-fdb DEBUG cookie=0x0, duration=45.642s, table=20, n_packets=185, n_bytes=17906, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:07.392 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:07.396 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:07.399 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:07.405 ovs-fdb DEBUG cookie=0x0, duration=46.667s, table=20, n_packets=189, n_bytes=18298, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:08.420 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:08.426 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:08.431 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:08.442 ovs-fdb DEBUG cookie=0x0, duration=47.701s, table=20, n_packets=195, n_bytes=18886, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:09.458 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:09.465 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:09.473 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:09.478 ovs-fdb DEBUG cookie=0x0, duration=48.737s, table=20, n_packets=199, n_bytes=19278, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:10.491 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:10.496 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:10.501 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:10.515 ovs-fdb DEBUG cookie=0x0, duration=49.775s, table=20, n_packets=203, n_bytes=19670, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:11.533 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:11.539 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:11.546 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:11.559 ovs-fdb DEBUG cookie=0x0, duration=50.816s, table=20, n_packets=207, n_bytes=20062, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:12.575 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:12.600 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:12.605 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 0
2015-10-29 10:53:12.610 ovs-fdb DEBUG cookie=0x0, duration=51.867s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:13.624 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:13.629 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 1
2015-10-29 10:53:13.634 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:13.640 ovs-fdb DEBUG cookie=0x0, duration=52.901s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=1, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:14.654 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:14.664 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 2
2015-10-29 10:53:14.669 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:14.673 ovs-fdb DEBUG cookie=0x0, duration=53.931s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=2, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:15.684 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:15.690 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 3
2015-10-29 10:53:15.696 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:15.700 ovs-fdb DEBUG cookie=0x0, duration=54.959s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=3, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:16.718 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:16.733 ovs-fdb DEBUG 60 1 fa:16:3e:50:a3:46 4
2015-10-29 10:53:16.740 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:16.745 ovs-fdb DEBUG cookie=0x0, duration=56.003s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=4, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:17.756 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:17.760 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:17.768 ovs-fdb DEBUG cookie=0x0, duration=57.030s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=5, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:18.781 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:18.785 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:18.798 ovs-fdb DEBUG cookie=0x0, duration=58.059s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=6, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:19.820 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:19.824 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:19.830 ovs-fdb DEBUG cookie=0x0, duration=59.091s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=7, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:20.848 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:20.853 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:20.862 ovs-fdb DEBUG cookie=0x0, duration=60.123s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=8, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:21.874 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:21.878 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:21.886 ovs-fdb DEBUG cookie=0x0, duration=61.148s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=9, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:22.899 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:22.903 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:22.921 ovs-fdb DEBUG cookie=0x0, duration=62.182s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=10, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:23.933 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:23.937 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:23.947 ovs-fdb DEBUG cookie=0x0, duration=63.208s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=11, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:24.960 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:24.964 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:24.973 ovs-fdb DEBUG cookie=0x0, duration=64.235s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=12, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:25.986 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:25.990 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:26.002 ovs-fdb DEBUG cookie=0x0, duration=65.262s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=13, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:27.013 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:27.017 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:27.026 ovs-fdb DEBUG cookie=0x0, duration=66.288s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=14, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:28.040 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:28.045 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:28.054 ovs-fdb DEBUG cookie=0x0, duration=67.315s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=15, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:29.065 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:29.068 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:29.077 ovs-fdb DEBUG cookie=0x0, duration=68.339s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=16, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:30.090 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:30.100 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:30.106 ovs-fdb DEBUG cookie=0x0, duration=69.367s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=17, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:31.124 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:31.128 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:31.137 ovs-fdb DEBUG cookie=0x0, duration=70.399s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=18, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:32.150 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:32.161 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:32.167 ovs-fdb DEBUG cookie=0x0, duration=71.427s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=19, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:33.178 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:33.182 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:33.190 ovs-fdb DEBUG cookie=0x0, duration=72.453s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=20, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:34.204 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:34.209 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:34.220 ovs-fdb DEBUG cookie=0x0, duration=73.481s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=21, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:35.232 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:35.236 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:35.244 ovs-fdb DEBUG cookie=0x0, duration=74.506s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=22, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:36.258 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:36.265 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:36.276 ovs-fdb DEBUG cookie=0x0, duration=75.534s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=23, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:37.285 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:37.289 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:37.297 ovs-fdb DEBUG cookie=0x0, duration=76.559s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=24, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:38.310 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:38.314 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:38.322 ovs-fdb DEBUG cookie=0x0, duration=77.585s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=25, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:39.334 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:39.339 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:39.347 ovs-fdb DEBUG cookie=0x0, duration=78.609s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=26, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:40.359 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:40.362 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:40.372 ovs-fdb DEBUG cookie=0x0, duration=79.634s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=28, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:41.384 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:41.387 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:41.397 ovs-fdb DEBUG cookie=0x0, duration=80.659s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=29, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:42.409 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:42.413 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:53:42.422 ovs-fdb DEBUG cookie=0x0, duration=81.684s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=30, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:43.434 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:43.438 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:43.447 ovs-fdb DEBUG cookie=0x0, duration=82.709s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=31, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:44.459 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:44.463 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:44.471 ovs-fdb DEBUG cookie=0x0, duration=83.734s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=32, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:45.483 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:45.487 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:45.496 ovs-fdb DEBUG cookie=0x0, duration=84.758s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=33, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:46.508 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:46.512 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:53:46.524 ovs-fdb DEBUG cookie=0x0, duration=85.785s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=34, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:47.539 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:47.545 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 2
2015-10-29 10:53:47.561 ovs-fdb DEBUG cookie=0x0, duration=86.822s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=35, hard_age=2, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:48.572 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:48.576 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 3
2015-10-29 10:53:48.586 ovs-fdb DEBUG cookie=0x0, duration=87.847s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=36, hard_age=3, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:49.597 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:49.601 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 4
2015-10-29 10:53:49.610 ovs-fdb DEBUG cookie=0x0, duration=88.872s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=37, hard_age=4, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:50.621 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:50.625 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 5
2015-10-29 10:53:50.636 ovs-fdb DEBUG cookie=0x0, duration=89.898s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=38, hard_age=5, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:51.648 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:51.652 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 6
2015-10-29 10:53:51.663 ovs-fdb DEBUG cookie=0x0, duration=90.925s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=39, hard_age=6, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:52.675 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:52.680 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 7
2015-10-29 10:53:52.689 ovs-fdb DEBUG cookie=0x0, duration=91.951s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=40, hard_age=7, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:53.702 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:53.707 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 8
2015-10-29 10:53:53.722 ovs-fdb DEBUG cookie=0x0, duration=92.981s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=41, hard_age=8, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:54.736 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:54.740 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 9
2015-10-29 10:53:54.750 ovs-fdb DEBUG cookie=0x0, duration=94.011s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=42, hard_age=9, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:55.763 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:55.769 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 10
2015-10-29 10:53:55.780 ovs-fdb DEBUG cookie=0x0, duration=95.041s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=43, hard_age=10, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:56.793 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:56.802 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 11
2015-10-29 10:53:56.806 ovs-fdb DEBUG cookie=0x0, duration=96.068s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=44, hard_age=11, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:57.821 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:57.826 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 12
2015-10-29 10:53:57.834 ovs-fdb DEBUG cookie=0x0, duration=97.096s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=45, hard_age=12, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:58.845 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:58.849 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 13
2015-10-29 10:53:58.859 ovs-fdb DEBUG cookie=0x0, duration=98.121s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=46, hard_age=13, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:53:59.871 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:53:59.875 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 14
2015-10-29 10:53:59.883 ovs-fdb DEBUG cookie=0x0, duration=99.145s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=47, hard_age=14, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:00.894 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:00.898 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 15
2015-10-29 10:54:00.907 ovs-fdb DEBUG cookie=0x0, duration=100.169s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=48, hard_age=15, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:01.919 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:01.923 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 16
2015-10-29 10:54:01.932 ovs-fdb DEBUG cookie=0x0, duration=101.194s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=49, hard_age=16, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:02.944 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:02.948 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 17
2015-10-29 10:54:02.957 ovs-fdb DEBUG cookie=0x0, duration=102.219s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=50, hard_age=17, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:03.970 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:03.974 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 18
2015-10-29 10:54:03.981 ovs-fdb DEBUG cookie=0x0, duration=103.243s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=51, hard_age=18, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:04.993 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:04.998 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 19
2015-10-29 10:54:05.005 ovs-fdb DEBUG cookie=0x0, duration=104.268s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=52, hard_age=19, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:06.020 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:06.025 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 20
2015-10-29 10:54:06.034 ovs-fdb DEBUG cookie=0x0, duration=105.295s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=53, hard_age=20, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:07.045 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:07.050 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 21
2015-10-29 10:54:07.058 ovs-fdb DEBUG cookie=0x0, duration=106.320s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=54, hard_age=21, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:08.080 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:08.084 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 22
2015-10-29 10:54:08.095 ovs-fdb DEBUG cookie=0x0, duration=107.355s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=55, hard_age=22, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:09.105 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:09.108 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 23
2015-10-29 10:54:09.118 ovs-fdb DEBUG cookie=0x0, duration=108.380s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=56, hard_age=23, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:10.130 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:10.140 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 24
2015-10-29 10:54:10.147 ovs-fdb DEBUG cookie=0x0, duration=109.406s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=57, hard_age=24, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:11.161 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:11.165 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 25
2015-10-29 10:54:11.173 ovs-fdb DEBUG cookie=0x0, duration=110.435s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=58, hard_age=25, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:12.188 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:12.193 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 26
2015-10-29 10:54:12.204 ovs-fdb DEBUG cookie=0x0, duration=111.465s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=59, hard_age=26, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:13.215 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:13.219 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 27
2015-10-29 10:54:13.226 ovs-fdb DEBUG cookie=0x0, duration=112.489s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=60, hard_age=27, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:14.239 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:14.244 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 28
2015-10-29 10:54:14.257 ovs-fdb DEBUG cookie=0x0, duration=113.517s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=61, hard_age=28, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:15.267 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:15.271 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 29
2015-10-29 10:54:15.280 ovs-fdb DEBUG cookie=0x0, duration=114.543s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=62, hard_age=29, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:16.294 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:16.303 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 30
2015-10-29 10:54:16.310 ovs-fdb DEBUG cookie=0x0, duration=115.572s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=63, hard_age=30, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:17.324 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:17.328 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 31
2015-10-29 10:54:17.356 ovs-fdb DEBUG cookie=0x0, duration=116.608s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=64, hard_age=31, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:18.370 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:18.375 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 32
2015-10-29 10:54:18.380 ovs-fdb DEBUG cookie=0x0, duration=117.641s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=66, hard_age=32, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:19.396 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:19.401 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 33
2015-10-29 10:54:19.406 ovs-fdb DEBUG cookie=0x0, duration=118.667s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=67, hard_age=33, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:20.425 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:20.430 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 35
2015-10-29 10:54:20.451 ovs-fdb DEBUG cookie=0x0, duration=119.703s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=68, hard_age=34, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:21.460 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:21.464 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 36
2015-10-29 10:54:21.473 ovs-fdb DEBUG cookie=0x0, duration=120.735s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=69, hard_age=35, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:22.548 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:22.558 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 37
2015-10-29 10:54:22.573 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 1
2015-10-29 10:54:22.583 ovs-fdb DEBUG cookie=0x0, duration=121.837s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=70, hard_age=37, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:23.607 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:23.622 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 38
2015-10-29 10:54:23.632 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 1
2015-10-29 10:54:23.643 ovs-fdb DEBUG cookie=0x0, duration=122.892s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=71, hard_age=38, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:24.659 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:24.669 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 39
2015-10-29 10:54:24.677 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 1
2015-10-29 10:54:24.685 ovs-fdb DEBUG cookie=0x0, duration=123.944s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=72, hard_age=39, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:25.720 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:25.728 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 40
2015-10-29 10:54:25.736 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 0
2015-10-29 10:54:25.744 ovs-fdb DEBUG cookie=0x0, duration=124.992s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=73, hard_age=40, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:26.765 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:26.770 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 41
2015-10-29 10:54:26.775 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 0
2015-10-29 10:54:26.795 ovs-fdb DEBUG cookie=0x0, duration=126.047s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=74, hard_age=41, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:27.807 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:27.811 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 42
2015-10-29 10:54:27.815 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 1
2015-10-29 10:54:27.818 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 0
2015-10-29 10:54:27.822 ovs-fdb DEBUG cookie=0x0, duration=127.081s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=75, hard_age=42, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:28.832 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:28.836 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 43
2015-10-29 10:54:28.840 ovs-fdb DEBUG 62 0 4e:2d:70:74:20:e6 2
2015-10-29 10:54:28.845 ovs-fdb DEBUG 62 0 fa:16:3e:50:a3:46 0
2015-10-29 10:54:28.850 ovs-fdb DEBUG cookie=0x0, duration=128.108s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=76, hard_age=43, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:29.860 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:29.864 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 44
2015-10-29 10:54:29.879 ovs-fdb DEBUG cookie=0x0, duration=129.140s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=77, hard_age=44, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:30.892 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:30.897 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 45
2015-10-29 10:54:30.901 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 0
2015-10-29 10:54:30.906 ovs-fdb DEBUG cookie=0x0, duration=130.168s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=78, hard_age=45, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:31.918 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:31.922 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 46
2015-10-29 10:54:31.926 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 1
2015-10-29 10:54:31.932 ovs-fdb DEBUG cookie=0x0, duration=131.194s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=79, hard_age=46, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:32.944 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:32.947 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 47
2015-10-29 10:54:32.952 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 2
2015-10-29 10:54:32.959 ovs-fdb DEBUG cookie=0x0, duration=132.220s, table=20, n_packets=211, n_bytes=20454, hard_timeout=300, idle_age=80, hard_age=47, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:33.971 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:33.976 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 3
2015-10-29 10:54:33.979 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:33.983 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:33.987 ovs-fdb DEBUG cookie=0x0, duration=133.245s, table=20, n_packets=213, n_bytes=20650, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:34.996 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:35.000 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 4
2015-10-29 10:54:35.004 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:35.008 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:35.012 ovs-fdb DEBUG cookie=0x0, duration=134.270s, table=20, n_packets=217, n_bytes=21042, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:36.033 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:36.040 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 5
2015-10-29 10:54:36.048 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:36.052 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:36.057 ovs-fdb DEBUG cookie=0x0, duration=135.307s, table=20, n_packets=221, n_bytes=21434, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:37.058 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:37.068 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 6
2015-10-29 10:54:37.073 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:37.077 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:37.081 ovs-fdb DEBUG cookie=0x0, duration=136.337s, table=20, n_packets=225, n_bytes=21826, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:38.093 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:38.098 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 7
2015-10-29 10:54:38.101 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:38.106 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:38.109 ovs-fdb DEBUG cookie=0x0, duration=137.368s, table=20, n_packets=229, n_bytes=22218, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:39.124 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:39.128 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 8
2015-10-29 10:54:39.132 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:39.136 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:39.150 ovs-fdb DEBUG cookie=0x0, duration=138.409s, table=20, n_packets=233, n_bytes=22610, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:40.164 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:40.168 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 9
2015-10-29 10:54:40.172 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:40.176 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:40.180 ovs-fdb DEBUG cookie=0x0, duration=139.438s, table=20, n_packets=237, n_bytes=23002, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:41.198 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:41.202 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 10
2015-10-29 10:54:41.206 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:41.210 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:41.214 ovs-fdb DEBUG cookie=0x0, duration=140.466s, table=20, n_packets=241, n_bytes=23394, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:42.218 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:42.222 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 11
2015-10-29 10:54:42.225 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:42.229 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:42.238 ovs-fdb DEBUG cookie=0x0, duration=141.500s, table=20, n_packets=245, n_bytes=23786, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:43.253 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:43.257 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 12
2015-10-29 10:54:43.261 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:43.267 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:43.274 ovs-fdb DEBUG cookie=0x0, duration=142.530s, table=20, n_packets=249, n_bytes=24178, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:44.286 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:44.296 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 13
2015-10-29 10:54:44.301 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:44.305 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:44.309 ovs-fdb DEBUG cookie=0x0, duration=143.565s, table=20, n_packets=253, n_bytes=24570, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:45.316 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:45.320 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 14
2015-10-29 10:54:45.324 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:45.328 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:45.332 ovs-fdb DEBUG cookie=0x0, duration=144.591s, table=20, n_packets=257, n_bytes=24962, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:46.351 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:46.355 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 15
2015-10-29 10:54:46.359 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:46.367 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:46.371 ovs-fdb DEBUG cookie=0x0, duration=145.622s, table=20, n_packets=261, n_bytes=25354, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:47.373 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:47.377 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 16
2015-10-29 10:54:47.381 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:47.385 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:47.390 ovs-fdb DEBUG cookie=0x0, duration=146.650s, table=20, n_packets=265, n_bytes=25746, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:48.404 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:48.409 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 17
2015-10-29 10:54:48.413 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:48.417 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:48.422 ovs-fdb DEBUG cookie=0x0, duration=147.684s, table=20, n_packets=269, n_bytes=26138, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:49.434 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:49.437 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 19
2015-10-29 10:54:49.441 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:49.445 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:49.449 ovs-fdb DEBUG cookie=0x0, duration=148.709s, table=20, n_packets=273, n_bytes=26530, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:50.459 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:50.469 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 20
2015-10-29 10:54:50.473 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:50.476 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:50.480 ovs-fdb DEBUG cookie=0x0, duration=149.735s, table=20, n_packets=278, n_bytes=26964, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:51.484 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:51.490 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 21
2015-10-29 10:54:51.494 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 1
2015-10-29 10:54:51.498 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 1
2015-10-29 10:54:51.501 ovs-fdb DEBUG cookie=0x0, duration=150.760s, table=20, n_packets=282, n_bytes=27356, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:52.510 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:52.513 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 22
2015-10-29 10:54:52.517 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:52.521 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:52.526 ovs-fdb DEBUG cookie=0x0, duration=151.785s, table=20, n_packets=288, n_bytes=27944, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:53.535 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:53.540 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 23
2015-10-29 10:54:53.544 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:53.548 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:53.552 ovs-fdb DEBUG cookie=0x0, duration=152.811s, table=20, n_packets=292, n_bytes=28336, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:54.563 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:54.567 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 24
2015-10-29 10:54:54.570 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:54.575 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:54.579 ovs-fdb DEBUG cookie=0x0, duration=153.838s, table=20, n_packets=296, n_bytes=28728, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:55.589 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:55.593 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 25
2015-10-29 10:54:55.597 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:55.601 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:55.605 ovs-fdb DEBUG cookie=0x0, duration=154.864s, table=20, n_packets=300, n_bytes=29120, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:56.614 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:56.617 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 26
2015-10-29 10:54:56.621 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:56.625 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:56.629 ovs-fdb DEBUG cookie=0x0, duration=155.889s, table=20, n_packets=304, n_bytes=29512, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:57.638 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:57.642 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 27
2015-10-29 10:54:57.646 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:57.649 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:57.653 ovs-fdb DEBUG cookie=0x0, duration=156.914s, table=20, n_packets=308, n_bytes=29904, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:58.664 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:58.668 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 28
2015-10-29 10:54:58.671 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:58.675 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:58.679 ovs-fdb DEBUG cookie=0x0, duration=157.939s, table=20, n_packets=312, n_bytes=30296, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:54:59.689 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:54:59.693 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 29
2015-10-29 10:54:59.697 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:54:59.701 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:54:59.704 ovs-fdb DEBUG cookie=0x0, duration=158.964s, table=20, n_packets=316, n_bytes=30688, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:00.713 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:00.717 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 30
2015-10-29 10:55:00.721 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:00.725 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:00.729 ovs-fdb DEBUG cookie=0x0, duration=159.989s, table=20, n_packets=320, n_bytes=31080, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:01.738 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:01.743 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 31
2015-10-29 10:55:01.747 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:01.751 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:01.755 ovs-fdb DEBUG cookie=0x0, duration=161.013s, table=20, n_packets=325, n_bytes=31514, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:02.765 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:02.771 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 32
2015-10-29 10:55:02.775 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:02.779 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:02.783 ovs-fdb DEBUG cookie=0x0, duration=162.041s, table=20, n_packets=329, n_bytes=31906, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:03.791 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:03.795 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 33
2015-10-29 10:55:03.799 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:03.803 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:03.807 ovs-fdb DEBUG cookie=0x0, duration=163.066s, table=20, n_packets=333, n_bytes=32298, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:04.817 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:04.820 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 34
2015-10-29 10:55:04.826 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:04.831 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:04.839 ovs-fdb DEBUG cookie=0x0, duration=164.095s, table=20, n_packets=337, n_bytes=32690, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:05.848 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:05.852 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 35
2015-10-29 10:55:05.856 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:05.860 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:05.864 ovs-fdb DEBUG cookie=0x0, duration=165.125s, table=20, n_packets=341, n_bytes=33082, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:06.877 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:06.881 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 36
2015-10-29 10:55:06.885 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:06.891 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:06.896 ovs-fdb DEBUG cookie=0x0, duration=166.152s, table=20, n_packets=345, n_bytes=33474, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:07.901 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:07.905 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 37
2015-10-29 10:55:07.909 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:07.913 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:07.917 ovs-fdb DEBUG cookie=0x0, duration=167.177s, table=20, n_packets=349, n_bytes=33866, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:08.927 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:08.932 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 38
2015-10-29 10:55:08.936 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:08.940 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:08.944 ovs-fdb DEBUG cookie=0x0, duration=168.202s, table=20, n_packets=353, n_bytes=34258, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:09.954 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:09.959 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 39
2015-10-29 10:55:09.964 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:09.968 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:09.972 ovs-fdb DEBUG cookie=0x0, duration=169.233s, table=20, n_packets=357, n_bytes=34650, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:10.985 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:10.994 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 40
2015-10-29 10:55:10.998 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:11.002 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:11.005 ovs-fdb DEBUG cookie=0x0, duration=170.260s, table=20, n_packets=361, n_bytes=35042, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:12.011 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:12.015 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 41
2015-10-29 10:55:12.019 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:12.024 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:12.027 ovs-fdb DEBUG cookie=0x0, duration=171.286s, table=20, n_packets=365, n_bytes=35434, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:13.035 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:13.039 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 42
2015-10-29 10:55:13.043 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:13.046 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:13.050 ovs-fdb DEBUG cookie=0x0, duration=172.311s, table=20, n_packets=369, n_bytes=35826, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:14.061 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:14.068 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 43
2015-10-29 10:55:14.072 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:14.075 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:14.079 ovs-fdb DEBUG cookie=0x0, duration=173.335s, table=20, n_packets=375, n_bytes=36414, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:15.085 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:15.089 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 44
2015-10-29 10:55:15.093 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:15.097 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:15.101 ovs-fdb DEBUG cookie=0x0, duration=174.361s, table=20, n_packets=379, n_bytes=36806, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:16.117 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:16.121 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 45
2015-10-29 10:55:16.126 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:16.130 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:16.135 ovs-fdb DEBUG cookie=0x0, duration=175.388s, table=20, n_packets=383, n_bytes=37198, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:17.143 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:17.147 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 46
2015-10-29 10:55:17.151 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:17.155 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:17.159 ovs-fdb DEBUG cookie=0x0, duration=176.419s, table=20, n_packets=387, n_bytes=37590, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:18.176 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:18.190 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 47
2015-10-29 10:55:18.198 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:18.204 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:18.210 ovs-fdb DEBUG cookie=0x0, duration=177.463s, table=20, n_packets=391, n_bytes=37982, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:19.219 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:19.223 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 48
2015-10-29 10:55:19.227 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:19.231 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:19.235 ovs-fdb DEBUG cookie=0x0, duration=178.497s, table=20, n_packets=395, n_bytes=38374, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:20.250 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:20.255 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 49
2015-10-29 10:55:20.260 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:20.265 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:20.270 ovs-fdb DEBUG cookie=0x0, duration=179.528s, table=20, n_packets=400, n_bytes=38808, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:21.279 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:21.283 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 50
2015-10-29 10:55:21.287 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:21.291 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:21.295 ovs-fdb DEBUG cookie=0x0, duration=180.555s, table=20, n_packets=404, n_bytes=39200, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2
2015-10-29 10:55:22.311 ovs-fdb DEBUG port VLAN MAC Age
2015-10-29 10:55:22.316 ovs-fdb DEBUG 62 1 4e:2d:70:74:20:e6 51
2015-10-29 10:55:22.321 ovs-fdb DEBUG 61 1 fa:16:3e:c5:24:11 0
2015-10-29 10:55:22.326 ovs-fdb DEBUG 62 1 fa:16:3e:50:a3:46 0
2015-10-29 10:55:22.334 ovs-fdb DEBUG cookie=0x0, duration=181.595s, table=20, n_packets=408, n_bytes=39592, hard_timeout=300, idle_age=0, hard_age=0, priority=1,vlan_tci=0x0001/0x0fff,dl_dst=fa:16:3e:c5:24:11 actions=load:0->NXM_OF_VLAN_TCI[],load:0xb->NXM_NX_TUN_ID[],output:2

View File

@ -0,0 +1,166 @@
2015-10-20 09:21:13.514 12892 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:21:13.516 12892 INFO neutron.common.config [-] /usr/bin/neutron-l3-agent version 2014.2.3-19.el7ost
2015-10-20 09:21:13.571 12892 INFO oslo.messaging._drivers.impl_rabbit [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:13.663 12892 INFO oslo.messaging._drivers.impl_rabbit [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:13.683 12892 INFO oslo.messaging._drivers.impl_rabbit [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:13.757 12892 INFO oslo.messaging._drivers.impl_rabbit [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:22:13.782 12892 WARNING neutron.agent.l3_agent [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 None] l3-agent cannot check service plugins enabled on the neutron server. Retrying. Detail message: Timed out waiting for a reply to message ID 62b36d24a1b943df92a159fe607ee035.
2015-10-20 09:23:13.795 12892 WARNING neutron.agent.l3_agent [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 None] l3-agent cannot check service plugins enabled on the neutron server. Retrying. Detail message: Timed out waiting for a reply to message ID 08b0e8ecdd2648cfbd5ad735095d0e2a.
2015-10-20 09:24:13.807 12892 WARNING neutron.agent.l3_agent [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 None] l3-agent cannot check service plugins enabled on the neutron server. Retrying. Detail message: Timed out waiting for a reply to message ID d0a4c85537c84d7a818eeddad90217f2.
2015-10-20 09:24:14.097 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:24:14.162 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:24:14.219 12892 INFO neutron.agent.l3_agent [-] L3 agent started
2015-10-20 10:17:04.311 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:04.311 12892 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:04.318 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:05.320 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:10.358 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: timed out. Trying again in 1 seconds.
2015-10-20 10:17:11.361 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:12.363 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:12.435 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:14.137 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'q-plugin': [Errno 110] Connection timed out
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:14.137 12892 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:14.147 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:15.149 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:15.202 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:44.023 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to consume message from queue: [Errno 110] Connection timed out
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 762, in _consume
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.connection.drain_events(timeout=poll_timeout)
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/connection.py", line 275, in drain_events
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.transport.drain_events(self.connection, **kwargs)
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/transport/pyamqp.py", line 91, in drain_events
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit return connection.drain_events(**kwargs)
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 302, in drain_events
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit chanmap, None, timeout=timeout,
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 365, in _wait_multiple
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit channel, method_sig, args, content = read_timeout(timeout)
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 336, in read_timeout
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit return self.method_reader.read_method()
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:33:44.023 12892 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:33:44.028 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:45.032 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:45.085 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 1 seconds.
2015-10-20 10:33:46.086 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:47.088 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:47.122 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 3 seconds.
2015-10-20 10:33:50.125 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:50.422 12892 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'q-plugin': Socket closed
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 620, in exchange_declare
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit (40, 11), # Channel.exchange_declare_ok
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 67, in wait
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, allowed_methods)
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/connection.py", line 240, in _wait_method
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit self.method_reader.read_method()
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 189, in read_method
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit raise m
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit IOError: Socket closed
2015-10-20 10:33:50.422 12892 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:33:50.425 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:51.127 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:51.297 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:51.427 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:51.499 12892 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:16.868 12892 INFO neutron.openstack.common.service [req-35f5e6fe-1137-4353-ac44-4889f1d675d4 None] Caught SIGTERM, exiting
2015-10-20 12:40:40.480 1549 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:40:40.483 1549 INFO neutron.common.config [-] /usr/bin/neutron-l3-agent version 2014.2.3-19.el7ost
2015-10-20 12:40:40.534 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:40.603 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:40:41.607 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:42.610 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:42.656 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:40:45.661 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:46.664 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:46.700 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 5 seconds.
2015-10-20 12:40:51.703 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:52.706 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:52.740 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 7 seconds.
2015-10-20 12:40:59.744 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:00.746 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:00.782 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 9 seconds.
2015-10-20 12:41:09.792 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:10.794 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:10.829 1549 ERROR oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 11 seconds.
2015-10-20 12:41:21.837 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:22.839 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.894 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.915 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:22.985 1549 INFO oslo.messaging._drivers.impl_rabbit [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d ] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:42:22.998 1549 WARNING neutron.agent.l3_agent [req-775ce5bb-63bd-48a5-b446-c1dcee40a84d None] l3-agent cannot check service plugins enabled on the neutron server. Retrying. Detail message: Timed out waiting for a reply to message ID 73b550103b714dd2bc3c6b3d92f65cf7.
2015-10-20 12:42:23.305 1549 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:42:23.365 1549 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:42:23.413 1549 INFO neutron.agent.l3_agent [-] L3 agent started

View File

@ -0,0 +1,414 @@
2015-10-20 09:21:14.992 13005 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:21:14.993 13005 INFO neutron.common.config [-] /usr/bin/neutron-metadata-agent version 2014.2.3-19.el7ost
2015-10-20 09:21:15.068 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Starting 4 workers
2015-10-20 09:21:15.075 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Started child 13071
2015-10-20 09:21:15.090 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Started child 13072
2015-10-20 09:21:15.103 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Started child 13073
2015-10-20 09:21:15.127 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Started child 13074
2015-10-20 09:21:15.205 13072 INFO eventlet.wsgi.server [-] (13072) wsgi starting up on http:///:v/
2015-10-20 09:21:15.237 13071 INFO eventlet.wsgi.server [-] (13071) wsgi starting up on http:///:v/
2015-10-20 09:21:15.280 13074 INFO eventlet.wsgi.server [-] (13074) wsgi starting up on http:///:v/
2015-10-20 09:21:15.282 13073 INFO eventlet.wsgi.server [-] (13073) wsgi starting up on http:///:v/
2015-10-20 09:21:15.294 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:15.360 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:15.375 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 09:21:15.427 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 09:22:15.443 13005 ERROR neutron.agent.metadata.agent [-] Failed reporting state!
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent Traceback (most recent call last):
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 351, in _report_state
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent use_call=self.agent_state.get('start_flag'))
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent return self.call(context, msg)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent return method(*args, **kwargs)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent retry=self.retry)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent timeout=timeout, retry=retry)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent retry=retry)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent self._raise_timeout_exception(msg_id)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent MessagingTimeout: Timed out waiting for a reply to message ID e68be9a54a9c4132b5be0116a5b88a2d.
2015-10-20 09:22:15.443 13005 TRACE neutron.agent.metadata.agent
2015-10-20 09:22:15.450 13005 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.159867 sec
2015-10-20 09:23:15.462 13005 ERROR neutron.agent.metadata.agent [-] Failed reporting state!
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent Traceback (most recent call last):
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 351, in _report_state
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent use_call=self.agent_state.get('start_flag'))
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent return self.call(context, msg)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent return method(*args, **kwargs)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent retry=self.retry)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent timeout=timeout, retry=retry)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent retry=retry)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent self._raise_timeout_exception(msg_id)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent MessagingTimeout: Timed out waiting for a reply to message ID e7d32d0164a54cad864e9564c310a0e1.
2015-10-20 09:23:15.462 13005 TRACE neutron.agent.metadata.agent
2015-10-20 09:23:15.466 13005 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.015083 sec
2015-10-20 09:24:15.479 13005 ERROR neutron.agent.metadata.agent [-] Failed reporting state!
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent Traceback (most recent call last):
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 351, in _report_state
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent use_call=self.agent_state.get('start_flag'))
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent return self.call(context, msg)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent return method(*args, **kwargs)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent context, msg, rpc_method='call', **kwargs)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent return func(context, msg['method'], **msg['args'])
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent retry=self.retry)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent timeout=timeout, retry=retry)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent retry=retry)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent self._raise_timeout_exception(msg_id)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent MessagingTimeout: Timed out waiting for a reply to message ID 037507b7cb194138b24c7063f132ca5d.
2015-10-20 09:24:15.479 13005 TRACE neutron.agent.metadata.agent
2015-10-20 09:24:15.483 13005 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 30.015555 sec
2015-10-20 10:17:15.573 13005 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'q-plugin': [Errno 110] Connection timed out
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:17:15.573 13005 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:17:15.583 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:17:16.585 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:17:16.634 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:45.597 13005 ERROR oslo.messaging._drivers.impl_rabbit [-] Failed to publish message to topic 'q-plugin': [Errno 110] Connection timed out
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit Traceback (most recent call last):
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 674, in ensure
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit return method()
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 782, in _publish
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit publisher = cls(self.conf, self.channel, topic=topic, **kwargs)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 393, in __init__
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit **options)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 339, in __init__
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self.reconnect(channel)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/impl_rabbit.py", line 347, in reconnect
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit routing_key=self.routing_key)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 85, in __init__
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self.revive(self._channel)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 218, in revive
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self.declare()
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/messaging.py", line 105, in declare
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self.exchange.declare()
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/kombu/entity.py", line 166, in declare
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit nowait=nowait, passive=passive,
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/channel.py", line 613, in exchange_declare
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self._send_method((40, 10), args)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/abstract_channel.py", line 56, in _send_method
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit self.channel_id, method_sig, args, content,
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/method_framing.py", line 221, in write_method
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit write_frame(1, channel, payload)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/amqp/transport.py", line 182, in write_frame
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit frame_type, channel, size, payload, 0xce,
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 377, in sendall
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit tail = self.send(data, flags)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit File "/usr/lib/python2.7/site-packages/eventlet/greenio/base.py", line 359, in send
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit total_sent += fd.send(data[total_sent:], flags)
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit error: [Errno 110] Connection timed out
2015-10-20 10:33:45.597 13005 TRACE oslo.messaging._drivers.impl_rabbit
2015-10-20 10:33:45.602 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:46.603 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:46.638 13005 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 101] ENETUNREACH. Trying again in 1 seconds.
2015-10-20 10:33:47.639 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 10:33:48.640 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 10:33:48.712 13005 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:20:17.358 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Caught SIGTERM, stopping children
2015-10-20 12:20:17.361 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Waiting on 4 children to exit
2015-10-20 12:20:17.363 13071 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child caught SIGTERM, exiting
2015-10-20 12:20:17.368 13072 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child caught SIGTERM, exiting
2015-10-20 12:20:17.380 13073 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child caught SIGTERM, exiting
2015-10-20 12:20:17.391 13074 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child caught SIGTERM, exiting
2015-10-20 12:20:17.367 13071 CRITICAL neutron [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.367 13071 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:17.367 13071 TRACE neutron sys.exit(main())
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:17.367 13071 TRACE neutron proxy.run()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:17.367 13071 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:17.367 13071 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:17.367 13071 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:17.367 13071 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:17.367 13071 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:17.367 13071 TRACE neutron launcher.stop()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:17.367 13071 TRACE neutron self.services.stop()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:17.367 13071 TRACE neutron service.stop()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:17.367 13071 TRACE neutron self._server.kill()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:17.367 13071 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:17.367 13071 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:17.367 13071 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:17.367 13071 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:17.367 13071 TRACE neutron pool.waitall()
2015-10-20 12:20:17.367 13071 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:17.367 13071 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:17.367 13071 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.367 13071 TRACE neutron
2015-10-20 12:20:17.373 13072 CRITICAL neutron [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.373 13072 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:17.373 13072 TRACE neutron sys.exit(main())
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:17.373 13072 TRACE neutron proxy.run()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:17.373 13072 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:17.373 13072 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:17.373 13072 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:17.373 13072 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:17.373 13072 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:17.373 13072 TRACE neutron launcher.stop()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:17.373 13072 TRACE neutron self.services.stop()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:17.373 13072 TRACE neutron service.stop()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:17.373 13072 TRACE neutron self._server.kill()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:17.373 13072 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:17.373 13072 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:17.373 13072 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:17.373 13072 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:17.373 13072 TRACE neutron pool.waitall()
2015-10-20 12:20:17.373 13072 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:17.373 13072 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:17.373 13072 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.373 13072 TRACE neutron
2015-10-20 12:20:17.395 13074 CRITICAL neutron [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.395 13074 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:17.395 13074 TRACE neutron sys.exit(main())
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:17.395 13074 TRACE neutron proxy.run()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:17.395 13074 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:17.395 13074 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:17.395 13074 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:17.395 13074 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:17.395 13074 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:17.395 13074 TRACE neutron launcher.stop()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:17.395 13074 TRACE neutron self.services.stop()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:17.395 13074 TRACE neutron service.stop()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:17.395 13074 TRACE neutron self._server.kill()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:17.395 13074 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:17.395 13074 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:17.395 13074 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:17.395 13074 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:17.395 13074 TRACE neutron pool.waitall()
2015-10-20 12:20:17.395 13074 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:17.395 13074 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:17.395 13074 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.395 13074 TRACE neutron
2015-10-20 12:20:17.385 13073 CRITICAL neutron [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.385 13073 TRACE neutron Traceback (most recent call last):
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/bin/neutron-metadata-agent", line 10, in <module>
2015-10-20 12:20:17.385 13073 TRACE neutron sys.exit(main())
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 382, in main
2015-10-20 12:20:17.385 13073 TRACE neutron proxy.run()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 368, in run
2015-10-20 12:20:17.385 13073 TRACE neutron backlog=self.conf.metadata_backlog)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 283, in start
2015-10-20 12:20:17.385 13073 TRACE neutron self._launch(application, workers=workers)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 238, in _launch
2015-10-20 12:20:17.385 13073 TRACE neutron self._server.launch_service(service, workers=workers)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 341, in launch_service
2015-10-20 12:20:17.385 13073 TRACE neutron self._start_child(wrap)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 322, in _start_child
2015-10-20 12:20:17.385 13073 TRACE neutron status, signo = self._child_wait_for_exit_or_signal(launcher)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 280, in _child_wait_for_exit_or_signal
2015-10-20 12:20:17.385 13073 TRACE neutron launcher.stop()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 128, in stop
2015-10-20 12:20:17.385 13073 TRACE neutron self.services.stop()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/openstack/common/service.py", line 470, in stop
2015-10-20 12:20:17.385 13073 TRACE neutron service.stop()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/wsgi.py", line 117, in stop
2015-10-20 12:20:17.385 13073 TRACE neutron self._server.kill()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 240, in kill
2015-10-20 12:20:17.385 13073 TRACE neutron return kill(self, *throw_args)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 294, in kill
2015-10-20 12:20:17.385 13073 TRACE neutron g.throw(*throw_args)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenthread.py", line 214, in main
2015-10-20 12:20:17.385 13073 TRACE neutron result = function(*args, **kwargs)
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 292, in _run
2015-10-20 12:20:17.385 13073 TRACE neutron log=logging.WritableLogger(logger))
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/wsgi.py", line 842, in server
2015-10-20 12:20:17.385 13073 TRACE neutron pool.waitall()
2015-10-20 12:20:17.385 13073 TRACE neutron File "/usr/lib/python2.7/site-packages/eventlet/greenpool.py", line 117, in waitall
2015-10-20 12:20:17.385 13073 TRACE neutron "Calling waitall() from within one of the " \
2015-10-20 12:20:17.385 13073 TRACE neutron AssertionError: Calling waitall() from within one of the GreenPool's greenthreads will never terminate.
2015-10-20 12:20:17.385 13073 TRACE neutron
2015-10-20 12:20:17.790 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child 13072 exited with status 1
2015-10-20 12:20:17.813 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child 13073 exited with status 1
2015-10-20 12:20:17.850 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child 13071 exited with status 1
2015-10-20 12:20:17.927 13005 INFO neutron.openstack.common.service [req-f509596c-baf5-4c64-a0c3-3ee8ec399764 None] Child 13074 exited with status 1
2015-10-20 12:40:30.169 1387 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:40:30.177 1387 INFO neutron.common.config [-] /usr/bin/neutron-metadata-agent version 2014.2.3-19.el7ost
2015-10-20 12:40:30.296 1387 INFO neutron.openstack.common.service [req-a70e96d2-9b98-4a05-a8de-b272d73e32d2 None] Starting 4 workers
2015-10-20 12:40:30.303 1387 INFO neutron.openstack.common.service [req-a70e96d2-9b98-4a05-a8de-b272d73e32d2 None] Started child 1484
2015-10-20 12:40:30.318 1387 INFO neutron.openstack.common.service [req-a70e96d2-9b98-4a05-a8de-b272d73e32d2 None] Started child 1485
2015-10-20 12:40:30.342 1387 INFO neutron.openstack.common.service [req-a70e96d2-9b98-4a05-a8de-b272d73e32d2 None] Started child 1487
2015-10-20 12:40:30.357 1387 INFO neutron.openstack.common.service [req-a70e96d2-9b98-4a05-a8de-b272d73e32d2 None] Started child 1488
2015-10-20 12:40:30.440 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:30.539 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 1 seconds.
2015-10-20 12:40:31.541 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:31.671 1485 INFO eventlet.wsgi.server [-] (1485) wsgi starting up on http:///:v/
2015-10-20 12:40:31.678 1487 INFO eventlet.wsgi.server [-] (1487) wsgi starting up on http:///:v/
2015-10-20 12:40:31.731 1488 INFO eventlet.wsgi.server [-] (1488) wsgi starting up on http:///:v/
2015-10-20 12:40:31.739 1484 INFO eventlet.wsgi.server [-] (1484) wsgi starting up on http:///:v/
2015-10-20 12:40:32.543 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:32.600 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 3 seconds.
2015-10-20 12:40:35.602 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:36.604 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:36.759 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 5 seconds.
2015-10-20 12:40:41.760 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:42.762 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:42.816 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 7 seconds.
2015-10-20 12:40:49.818 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:40:50.820 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:40:50.855 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 9 seconds.
2015-10-20 12:40:59.857 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:00.858 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:00.893 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 11 seconds.
2015-10-20 12:41:11.895 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:12.897 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:12.932 1387 ERROR oslo.messaging._drivers.impl_rabbit [-] AMQP server on 10.12.27.29:5672 is unreachable: [Errno 111] ECONNREFUSED. Trying again in 13 seconds.
2015-10-20 12:41:25.934 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Delaying reconnect for 1.0 seconds...
2015-10-20 12:41:26.937 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:27.026 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:27.065 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connecting to AMQP server on 10.12.27.29:5672
2015-10-20 12:41:27.138 1387 INFO oslo.messaging._drivers.impl_rabbit [-] Connected to AMQP server on 10.12.27.29:5672
2015-10-20 12:42:27.170 1387 ERROR neutron.agent.metadata.agent [-] Failed reporting state!
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent Traceback (most recent call last):
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/metadata/agent.py", line 351, in _report_state
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent use_call=self.agent_state.get('start_flag'))
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/agent/rpc.py", line 72, in report_state
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent return self.call(context, msg)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/log.py", line 34, in wrapper
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent return method(*args, **kwargs)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 161, in call
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent context, msg, rpc_method='call', **kwargs)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/neutron/common/rpc.py", line 187, in __call_rpc_method
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent return func(context, msg['method'], **msg['args'])
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 389, in call
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent return self.prepare().call(ctxt, method, **kwargs)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/rpc/client.py", line 152, in call
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent retry=self.retry)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/transport.py", line 90, in _send
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent timeout=timeout, retry=retry)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 416, in send
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent retry=retry)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 405, in _send
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent result = self._waiter.wait(msg_id, timeout)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 293, in wait
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent reply, ending = self._poll_connection(msg_id, timer)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 240, in _poll_connection
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent self._raise_timeout_exception(msg_id)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent File "/usr/lib/python2.7/site-packages/oslo/messaging/_drivers/amqpdriver.py", line 209, in _raise_timeout_exception
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent _('Timed out waiting for a reply to message ID %s.') % msg_id)
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent MessagingTimeout: Timed out waiting for a reply to message ID f9a6150616e14d2f870da565e5fe1dae.
2015-10-20 12:42:27.170 1387 TRACE neutron.agent.metadata.agent
2015-10-20 12:42:27.195 1387 WARNING neutron.openstack.common.loopingcall [-] task run outlasted interval by 86.761668 sec

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,15 @@
2015-10-20 09:21:07.041 12845 INFO neutron.common.config [-] Logging enabled!
2015-10-20 09:21:07.042 12845 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 09:21:07.611 12845 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 09:21:07.889 12845 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully
2015-10-20 12:20:22.229 32136 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:20:22.230 32136 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 12:20:25.396 32136 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 12:20:28.106 32136 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-ex
2015-10-20 12:20:29.483 32136 INFO neutron.agent.ovs_cleanup_util [-] Delete qvo2fd11ba3-51
2015-10-20 12:20:29.502 32136 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully
2015-10-20 12:40:30.315 1399 INFO neutron.common.config [-] Logging enabled!
2015-10-20 12:40:30.318 1399 INFO neutron.common.config [-] /usr/bin/neutron-ovs-cleanup version 2014.2.3-19.el7ost
2015-10-20 12:40:34.463 1399 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-int
2015-10-20 12:40:35.305 1399 INFO neutron.agent.ovs_cleanup_util [-] Cleaning br-ex
2015-10-20 12:40:36.158 1399 INFO neutron.agent.ovs_cleanup_util [-] OVS cleanup completed successfully

View File

@ -0,0 +1,287 @@
2015-10-29 10:52:20.739 pinger DEBUG PING 192.168.233.100 (192.168.233.100) 56(84) bytes of data.
2015-10-29 10:52:20.744 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=1 ttl=63 time=4.52 ms
2015-10-29 10:52:21.237 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=2 ttl=63 time=1.70 ms
2015-10-29 10:52:21.738 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=3 ttl=63 time=1.14 ms
2015-10-29 10:52:22.238 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=4 ttl=63 time=1.02 ms
2015-10-29 10:52:22.740 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=5 ttl=63 time=1.19 ms
2015-10-29 10:52:23.241 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=6 ttl=63 time=1.09 ms
2015-10-29 10:52:23.741 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=7 ttl=63 time=1.02 ms
2015-10-29 10:52:24.242 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=8 ttl=63 time=0.991 ms
2015-10-29 10:52:24.742 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=9 ttl=63 time=1.14 ms
2015-10-29 10:52:25.243 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=10 ttl=63 time=1.08 ms
2015-10-29 10:52:25.744 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=11 ttl=63 time=1.03 ms
2015-10-29 10:52:26.245 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=12 ttl=63 time=1.11 ms
2015-10-29 10:52:26.746 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=13 ttl=63 time=1.24 ms
2015-10-29 10:52:27.247 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=14 ttl=63 time=1.03 ms
2015-10-29 10:52:27.747 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=15 ttl=63 time=1.04 ms
2015-10-29 10:52:28.248 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=16 ttl=63 time=1.19 ms
2015-10-29 10:52:28.754 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=17 ttl=63 time=1.74 ms
2015-10-29 10:52:29.251 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=18 ttl=63 time=1.21 ms
2015-10-29 10:52:29.760 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=19 ttl=63 time=1.26 ms
2015-10-29 10:52:30.253 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=20 ttl=63 time=1.19 ms
2015-10-29 10:52:30.758 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=21 ttl=63 time=1.69 ms
2015-10-29 10:52:31.255 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=22 ttl=63 time=1.15 ms
2015-10-29 10:52:31.756 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=23 ttl=63 time=1.31 ms
2015-10-29 10:52:32.262 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=24 ttl=63 time=1.57 ms
2015-10-29 10:52:32.760 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=25 ttl=63 time=2.08 ms
2015-10-29 10:52:33.260 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=26 ttl=63 time=1.11 ms
2015-10-29 10:52:33.762 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=27 ttl=63 time=1.17 ms
2015-10-29 10:52:34.264 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=28 ttl=63 time=1.26 ms
2015-10-29 10:52:34.765 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=29 ttl=63 time=1.29 ms
2015-10-29 10:52:35.265 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=30 ttl=63 time=1.13 ms
2015-10-29 10:52:35.768 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=31 ttl=63 time=1.18 ms
2015-10-29 10:52:36.270 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=32 ttl=63 time=1.08 ms
2015-10-29 10:52:36.770 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=33 ttl=63 time=1.33 ms
2015-10-29 10:52:37.270 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=34 ttl=63 time=1.00 ms
2015-10-29 10:52:37.772 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=35 ttl=63 time=1.19 ms
2015-10-29 10:52:38.273 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=36 ttl=63 time=1.33 ms
2015-10-29 10:52:38.780 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=37 ttl=63 time=1.40 ms
2015-10-29 10:52:39.275 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=38 ttl=63 time=1.47 ms
2015-10-29 10:52:39.777 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=39 ttl=63 time=1.94 ms
2015-10-29 10:52:40.276 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=40 ttl=63 time=1.07 ms
2015-10-29 10:52:40.787 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=41 ttl=63 time=1.33 ms
2015-10-29 10:52:41.279 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=42 ttl=63 time=1.05 ms
2015-10-29 10:52:41.781 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=43 ttl=63 time=1.11 ms
2015-10-29 10:52:42.282 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=44 ttl=63 time=0.996 ms
2015-10-29 10:52:42.792 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=45 ttl=63 time=1.21 ms
2015-10-29 10:52:43.285 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=46 ttl=63 time=1.06 ms
2015-10-29 10:52:43.786 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=47 ttl=63 time=1.16 ms
2015-10-29 10:52:44.286 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=48 ttl=63 time=1.20 ms
2015-10-29 10:52:44.796 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=49 ttl=63 time=1.55 ms
2015-10-29 10:52:45.289 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=50 ttl=63 time=1.09 ms
2015-10-29 10:52:45.790 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=51 ttl=63 time=1.19 ms
2015-10-29 10:52:46.291 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=52 ttl=63 time=1.17 ms
2015-10-29 10:52:46.793 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=53 ttl=63 time=1.25 ms
2015-10-29 10:52:47.294 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=54 ttl=63 time=1.13 ms
2015-10-29 10:52:47.794 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=55 ttl=63 time=1.23 ms
2015-10-29 10:52:48.297 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=56 ttl=63 time=1.13 ms
2015-10-29 10:52:48.797 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=57 ttl=63 time=1.36 ms
2015-10-29 10:52:49.298 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=58 ttl=63 time=1.14 ms
2015-10-29 10:52:49.799 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=59 ttl=63 time=1.25 ms
2015-10-29 10:52:50.300 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=60 ttl=63 time=1.16 ms
2015-10-29 10:52:50.807 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=61 ttl=63 time=1.31 ms
2015-10-29 10:52:51.302 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=62 ttl=63 time=1.29 ms
2015-10-29 10:52:51.805 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=63 ttl=63 time=1.91 ms
2015-10-29 10:52:52.305 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=64 ttl=63 time=1.13 ms
2015-10-29 10:52:52.810 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=65 ttl=63 time=1.32 ms
2015-10-29 10:52:53.309 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=66 ttl=63 time=1.11 ms
2015-10-29 10:52:53.810 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=67 ttl=63 time=1.17 ms
2015-10-29 10:52:54.312 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=68 ttl=63 time=1.08 ms
2015-10-29 10:52:54.816 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=69 ttl=63 time=1.37 ms
2015-10-29 10:52:55.315 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=70 ttl=63 time=1.12 ms
2015-10-29 10:52:55.817 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=71 ttl=63 time=3.21 ms
2015-10-29 10:52:56.317 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=72 ttl=63 time=1.22 ms
2015-10-29 10:52:56.824 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=73 ttl=63 time=1.29 ms
2015-10-29 10:52:57.323 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=74 ttl=63 time=1.20 ms
2015-10-29 10:52:57.821 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=75 ttl=63 time=1.15 ms
2015-10-29 10:52:58.324 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=76 ttl=63 time=1.80 ms
2015-10-29 10:52:58.826 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=77 ttl=63 time=1.39 ms
2015-10-29 10:52:59.328 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=78 ttl=63 time=1.26 ms
2015-10-29 10:52:59.828 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=79 ttl=63 time=1.40 ms
2015-10-29 10:53:00.330 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=80 ttl=63 time=1.14 ms
2015-10-29 10:53:00.832 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=81 ttl=63 time=1.38 ms
2015-10-29 10:53:01.332 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=82 ttl=63 time=1.17 ms
2015-10-29 10:53:01.904 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=83 ttl=63 time=73.5 ms
2015-10-29 10:53:02.336 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=84 ttl=63 time=1.14 ms
2015-10-29 10:53:02.836 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=85 ttl=63 time=1.36 ms
2015-10-29 10:53:03.337 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=86 ttl=63 time=1.34 ms
2015-10-29 10:53:03.838 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=87 ttl=63 time=1.22 ms
2015-10-29 10:53:04.341 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=88 ttl=63 time=1.13 ms
2015-10-29 10:53:04.841 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=89 ttl=63 time=1.33 ms
2015-10-29 10:53:05.347 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=90 ttl=63 time=1.58 ms
2015-10-29 10:53:05.845 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=91 ttl=63 time=1.22 ms
2015-10-29 10:53:06.344 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=92 ttl=63 time=1.37 ms
2015-10-29 10:53:06.848 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=93 ttl=63 time=1.39 ms
2015-10-29 10:53:07.348 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=94 ttl=63 time=1.22 ms
2015-10-29 10:53:07.849 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=95 ttl=63 time=1.19 ms
2015-10-29 10:53:08.361 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=96 ttl=63 time=4.97 ms
2015-10-29 10:53:08.863 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=97 ttl=63 time=5.50 ms
2015-10-29 10:53:09.356 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=98 ttl=63 time=1.61 ms
2015-10-29 10:53:09.855 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=99 ttl=63 time=1.54 ms
2015-10-29 10:53:10.360 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=100 ttl=63 time=1.37 ms
2015-10-29 10:53:10.860 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=101 ttl=63 time=1.57 ms
2015-10-29 10:53:11.359 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=102 ttl=63 time=1.73 ms
2015-10-29 10:53:11.864 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=103 ttl=63 time=1.30 ms
2015-10-29 10:53:12.369 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=104 ttl=63 time=1.72 ms
2015-10-29 10:53:45.581 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=170 ttl=63 time=2.22 ms
2015-10-29 10:53:46.082 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=171 ttl=63 time=0.992 ms
2015-10-29 10:53:46.581 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=172 ttl=63 time=1.04 ms
2015-10-29 10:53:47.083 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=173 ttl=63 time=1.89 ms
2015-10-29 10:53:47.586 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=174 ttl=63 time=4.10 ms
2015-10-29 10:53:48.084 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=175 ttl=63 time=0.910 ms
2015-10-29 10:53:48.584 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=176 ttl=63 time=0.849 ms
2015-10-29 10:53:49.084 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=177 ttl=63 time=0.983 ms
2015-10-29 10:53:49.586 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=178 ttl=63 time=1.05 ms
2015-10-29 10:53:50.087 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=179 ttl=63 time=0.992 ms
2015-10-29 10:53:50.589 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=180 ttl=63 time=2.56 ms
2015-10-29 10:53:51.089 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=181 ttl=63 time=1.83 ms
2015-10-29 10:53:51.596 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=182 ttl=63 time=2.24 ms
2015-10-29 10:53:52.098 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=183 ttl=63 time=2.88 ms
2015-10-29 10:53:52.596 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=184 ttl=63 time=0.816 ms
2015-10-29 10:53:53.097 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=185 ttl=63 time=1.09 ms
2015-10-29 10:53:53.601 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=186 ttl=63 time=0.866 ms
2015-10-29 10:53:54.104 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=187 ttl=63 time=1.86 ms
2015-10-29 10:53:54.603 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=188 ttl=63 time=1.09 ms
2015-10-29 10:53:55.108 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=189 ttl=63 time=5.63 ms
2015-10-29 10:53:55.604 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=190 ttl=63 time=1.00 ms
2015-10-29 10:53:56.106 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=191 ttl=63 time=1.03 ms
2015-10-29 10:53:56.606 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=192 ttl=63 time=0.881 ms
2015-10-29 10:53:57.110 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=193 ttl=63 time=1.31 ms
2015-10-29 10:53:57.611 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=194 ttl=63 time=1.12 ms
2015-10-29 10:53:58.112 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=195 ttl=63 time=0.962 ms
2015-10-29 10:53:58.616 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=196 ttl=63 time=1.03 ms
2015-10-29 10:53:59.117 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=197 ttl=63 time=1.74 ms
2015-10-29 10:53:59.619 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=198 ttl=63 time=2.29 ms
2015-10-29 10:54:00.120 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=199 ttl=63 time=0.966 ms
2015-10-29 10:54:00.623 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=200 ttl=63 time=3.28 ms
2015-10-29 10:54:01.122 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=201 ttl=63 time=1.43 ms
2015-10-29 10:54:01.622 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=202 ttl=63 time=1.27 ms
2015-10-29 10:54:02.129 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=203 ttl=63 time=1.23 ms
2015-10-29 10:54:02.625 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=204 ttl=63 time=1.36 ms
2015-10-29 10:54:03.125 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=205 ttl=63 time=1.16 ms
2015-10-29 10:54:03.631 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=206 ttl=63 time=5.70 ms
2015-10-29 10:54:04.132 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=207 ttl=63 time=4.17 ms
2015-10-29 10:54:04.634 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=208 ttl=63 time=7.14 ms
2015-10-29 10:54:05.133 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=209 ttl=63 time=4.93 ms
2015-10-29 10:54:05.631 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=210 ttl=63 time=2.01 ms
2015-10-29 10:54:06.135 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=211 ttl=63 time=4.89 ms
2015-10-29 10:54:06.631 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=212 ttl=63 time=1.00 ms
2015-10-29 10:54:07.138 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=213 ttl=63 time=6.96 ms
2015-10-29 10:54:07.633 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=214 ttl=63 time=0.975 ms
2015-10-29 10:54:08.135 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=215 ttl=63 time=2.17 ms
2015-10-29 10:54:08.635 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=216 ttl=63 time=1.75 ms
2015-10-29 10:54:09.138 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=217 ttl=63 time=3.25 ms
2015-10-29 10:54:09.641 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=218 ttl=63 time=1.53 ms
2015-10-29 10:54:10.145 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=219 ttl=63 time=2.03 ms
2015-10-29 10:54:10.643 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=220 ttl=63 time=1.01 ms
2015-10-29 10:54:11.144 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=221 ttl=63 time=1.43 ms
2015-10-29 10:54:11.647 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=222 ttl=63 time=3.21 ms
2015-10-29 10:54:12.147 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=223 ttl=63 time=1.23 ms
2015-10-29 10:54:12.647 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=224 ttl=63 time=1.43 ms
2015-10-29 10:54:13.148 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=225 ttl=63 time=1.14 ms
2015-10-29 10:54:13.649 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=226 ttl=63 time=1.06 ms
2015-10-29 10:54:14.150 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=227 ttl=63 time=0.992 ms
2015-10-29 10:54:14.650 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=228 ttl=63 time=1.37 ms
2015-10-29 10:54:15.151 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=229 ttl=63 time=1.03 ms
2015-10-29 10:54:15.652 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=230 ttl=63 time=1.01 ms
2015-10-29 10:54:16.154 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=231 ttl=63 time=1.15 ms
2015-10-29 10:54:16.653 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=232 ttl=63 time=1.01 ms
2015-10-29 10:54:17.154 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=233 ttl=63 time=1.58 ms
2015-10-29 10:54:17.656 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=234 ttl=63 time=1.08 ms
2015-10-29 10:54:18.171 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=235 ttl=63 time=1.04 ms
2015-10-29 10:54:18.657 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=236 ttl=63 time=1.33 ms
2015-10-29 10:54:19.160 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=237 ttl=63 time=2.28 ms
2015-10-29 10:54:19.661 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=238 ttl=63 time=2.16 ms
2015-10-29 10:54:20.161 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=239 ttl=63 time=0.986 ms
2015-10-29 10:54:20.663 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=240 ttl=63 time=1.04 ms
2015-10-29 10:54:21.162 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=241 ttl=63 time=1.03 ms
2015-10-29 10:54:21.667 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=242 ttl=63 time=4.80 ms
2015-10-29 10:54:22.176 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=243 ttl=63 time=3.16 ms
2015-10-29 10:54:22.666 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=244 ttl=63 time=1.35 ms
2015-10-29 10:54:23.169 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=245 ttl=63 time=1.92 ms
2015-10-29 10:54:23.675 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=246 ttl=63 time=5.89 ms
2015-10-29 10:54:24.170 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=247 ttl=63 time=1.94 ms
2015-10-29 10:54:24.679 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=248 ttl=63 time=2.47 ms
2015-10-29 10:54:25.173 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=249 ttl=63 time=1.47 ms
2015-10-29 10:54:25.674 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=250 ttl=63 time=1.61 ms
2015-10-29 10:54:26.183 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=251 ttl=63 time=8.96 ms
2015-10-29 10:54:26.676 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=252 ttl=63 time=1.24 ms
2015-10-29 10:54:27.182 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=253 ttl=63 time=7.17 ms
2015-10-29 10:54:33.742 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=266 ttl=63 time=4.74 ms
2015-10-29 10:54:34.240 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=267 ttl=63 time=2.21 ms
2015-10-29 10:54:34.744 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=268 ttl=63 time=1.35 ms
2015-10-29 10:54:35.249 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=269 ttl=63 time=1.26 ms
2015-10-29 10:54:35.749 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=270 ttl=63 time=1.25 ms
2015-10-29 10:54:36.255 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=271 ttl=63 time=1.48 ms
2015-10-29 10:54:36.755 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=272 ttl=63 time=1.35 ms
2015-10-29 10:54:37.259 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=273 ttl=63 time=1.40 ms
2015-10-29 10:54:37.759 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=274 ttl=63 time=3.69 ms
2015-10-29 10:54:38.255 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=275 ttl=63 time=1.29 ms
2015-10-29 10:54:38.757 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=276 ttl=63 time=1.25 ms
2015-10-29 10:54:39.264 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=277 ttl=63 time=1.29 ms
2015-10-29 10:54:39.760 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=278 ttl=63 time=1.33 ms
2015-10-29 10:54:40.262 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=279 ttl=63 time=1.20 ms
2015-10-29 10:54:40.765 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=280 ttl=63 time=2.69 ms
2015-10-29 10:54:41.262 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=281 ttl=63 time=1.36 ms
2015-10-29 10:54:41.765 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=282 ttl=63 time=1.19 ms
2015-10-29 10:54:42.267 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=283 ttl=63 time=1.34 ms
2015-10-29 10:54:42.772 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=284 ttl=63 time=1.20 ms
2015-10-29 10:54:43.271 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=285 ttl=63 time=1.44 ms
2015-10-29 10:54:43.766 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=286 ttl=63 time=1.22 ms
2015-10-29 10:54:44.269 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=287 ttl=63 time=1.55 ms
2015-10-29 10:54:44.767 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=288 ttl=63 time=1.10 ms
2015-10-29 10:54:45.272 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=289 ttl=63 time=1.10 ms
2015-10-29 10:54:45.770 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=290 ttl=63 time=1.12 ms
2015-10-29 10:54:46.273 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=291 ttl=63 time=1.23 ms
2015-10-29 10:54:46.773 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=292 ttl=63 time=1.15 ms
2015-10-29 10:54:47.275 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=293 ttl=63 time=1.15 ms
2015-10-29 10:54:47.776 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=294 ttl=63 time=1.16 ms
2015-10-29 10:54:48.278 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=295 ttl=63 time=1.27 ms
2015-10-29 10:54:48.779 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=296 ttl=63 time=1.09 ms
2015-10-29 10:54:49.279 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=297 ttl=63 time=1.07 ms
2015-10-29 10:54:49.781 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=298 ttl=63 time=1.08 ms
2015-10-29 10:54:50.288 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=299 ttl=63 time=3.91 ms
2015-10-29 10:54:50.784 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=300 ttl=63 time=1.13 ms
2015-10-29 10:54:51.288 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=301 ttl=63 time=1.15 ms
2015-10-29 10:54:51.791 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=302 ttl=63 time=1.11 ms
2015-10-29 10:54:52.291 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=303 ttl=63 time=1.17 ms
2015-10-29 10:54:52.792 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=304 ttl=63 time=1.11 ms
2015-10-29 10:54:53.298 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=305 ttl=63 time=1.24 ms
2015-10-29 10:54:53.798 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=306 ttl=63 time=1.10 ms
2015-10-29 10:54:54.299 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=307 ttl=63 time=1.16 ms
2015-10-29 10:54:54.801 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=308 ttl=63 time=1.14 ms
2015-10-29 10:54:55.305 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=309 ttl=63 time=1.11 ms
2015-10-29 10:54:55.805 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=310 ttl=63 time=1.03 ms
2015-10-29 10:54:56.307 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=311 ttl=63 time=1.25 ms
2015-10-29 10:54:56.808 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=312 ttl=63 time=1.11 ms
2015-10-29 10:54:57.310 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=313 ttl=63 time=1.11 ms
2015-10-29 10:54:57.811 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=314 ttl=63 time=1.12 ms
2015-10-29 10:54:58.312 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=315 ttl=63 time=1.20 ms
2015-10-29 10:54:58.812 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=316 ttl=63 time=1.18 ms
2015-10-29 10:54:59.315 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=317 ttl=63 time=1.16 ms
2015-10-29 10:54:59.815 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=318 ttl=63 time=1.14 ms
2015-10-29 10:55:00.320 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=319 ttl=63 time=1.26 ms
2015-10-29 10:55:00.819 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=320 ttl=63 time=1.14 ms
2015-10-29 10:55:01.320 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=321 ttl=63 time=1.13 ms
2015-10-29 10:55:01.820 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=322 ttl=63 time=1.23 ms
2015-10-29 10:55:02.322 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=323 ttl=63 time=1.38 ms
2015-10-29 10:55:02.823 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=324 ttl=63 time=1.34 ms
2015-10-29 10:55:03.325 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=325 ttl=63 time=1.16 ms
2015-10-29 10:55:03.827 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=326 ttl=63 time=1.22 ms
2015-10-29 10:55:04.328 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=327 ttl=63 time=1.33 ms
2015-10-29 10:55:04.833 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=328 ttl=63 time=1.68 ms
2015-10-29 10:55:05.328 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=329 ttl=63 time=1.23 ms
2015-10-29 10:55:05.829 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=330 ttl=63 time=1.25 ms
2015-10-29 10:55:06.330 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=331 ttl=63 time=1.35 ms
2015-10-29 10:55:06.835 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=332 ttl=63 time=1.23 ms
2015-10-29 10:55:07.333 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=333 ttl=63 time=1.22 ms
2015-10-29 10:55:07.834 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=334 ttl=63 time=1.24 ms
2015-10-29 10:55:08.335 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=335 ttl=63 time=1.34 ms
2015-10-29 10:55:08.836 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=336 ttl=63 time=1.20 ms
2015-10-29 10:55:09.338 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=337 ttl=63 time=1.27 ms
2015-10-29 10:55:09.838 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=338 ttl=63 time=1.22 ms
2015-10-29 10:55:10.344 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=339 ttl=63 time=1.38 ms
2015-10-29 10:55:10.840 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=340 ttl=63 time=1.19 ms
2015-10-29 10:55:11.342 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=341 ttl=63 time=1.24 ms
2015-10-29 10:55:11.842 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=342 ttl=63 time=1.13 ms
2015-10-29 10:55:12.350 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=343 ttl=63 time=1.25 ms
2015-10-29 10:55:12.845 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=344 ttl=63 time=1.11 ms
2015-10-29 10:55:13.349 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=345 ttl=63 time=1.18 ms
2015-10-29 10:55:13.847 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=346 ttl=63 time=1.12 ms
2015-10-29 10:55:14.355 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=347 ttl=63 time=1.21 ms
2015-10-29 10:55:14.851 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=348 ttl=63 time=1.26 ms
2015-10-29 10:55:15.355 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=349 ttl=63 time=1.19 ms
2015-10-29 10:55:15.852 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=350 ttl=63 time=1.15 ms
2015-10-29 10:55:16.355 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=351 ttl=63 time=1.15 ms
2015-10-29 10:55:16.855 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=352 ttl=63 time=1.16 ms
2015-10-29 10:55:17.359 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=353 ttl=63 time=1.21 ms
2015-10-29 10:55:17.859 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=354 ttl=63 time=1.13 ms
2015-10-29 10:55:18.374 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=355 ttl=63 time=2.67 ms
2015-10-29 10:55:18.862 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=356 ttl=63 time=1.13 ms
2015-10-29 10:55:19.363 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=357 ttl=63 time=1.20 ms
2015-10-29 10:55:19.864 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=358 ttl=63 time=1.26 ms
2015-10-29 10:55:20.379 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=359 ttl=63 time=2.17 ms
2015-10-29 10:55:20.905 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=360 ttl=63 time=39.4 ms
2015-10-29 10:55:21.370 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=361 ttl=63 time=1.19 ms
2015-10-29 10:55:21.880 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=362 ttl=63 time=2.08 ms
2015-10-29 10:55:22.379 pinger DEBUG 64 bytes from 192.168.233.100: icmp_seq=363 ttl=63 time=3.74 ms

View File

@ -0,0 +1,805 @@
2015-10-29 10:52:28.350 tcpdump DEBUG Starting tcpdump retrier on interface 'qvo2e6d0f35-cb'
2015-10-29 10:52:28.422 tcpdump DEBUG listening on qvo2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:52:28.466 tcpdump DEBUG 10:52:28.461400 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 16, length 64
2015-10-29 10:52:28.470 tcpdump DEBUG 10:52:28.461925 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 16, length 64
2015-10-29 10:52:28.751 tcpdump DEBUG 10:52:28.745196 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 17, length 64
2015-10-29 10:52:28.758 tcpdump DEBUG 10:52:28.746202 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 17, length 64
2015-10-29 10:52:28.968 tcpdump DEBUG 10:52:28.962167 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 17, length 64
2015-10-29 10:52:28.972 tcpdump DEBUG 10:52:28.962699 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 17, length 64
2015-10-29 10:52:29.251 tcpdump DEBUG 10:52:29.246543 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 18, length 64
2015-10-29 10:52:29.255 tcpdump DEBUG 10:52:29.247049 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 18, length 64
2015-10-29 10:52:29.468 tcpdump DEBUG 10:52:29.462764 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 18, length 64
2015-10-29 10:52:29.472 tcpdump DEBUG 10:52:29.463195 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 18, length 64
2015-10-29 10:52:29.755 tcpdump DEBUG 10:52:29.747221 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 19, length 64
2015-10-29 10:52:29.760 tcpdump DEBUG 10:52:29.747702 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 19, length 64
2015-10-29 10:52:29.967 tcpdump DEBUG 10:52:29.963562 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 19, length 64
2015-10-29 10:52:29.972 tcpdump DEBUG 10:52:29.964064 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 19, length 64
2015-10-29 10:52:30.253 tcpdump DEBUG 10:52:30.248320 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 20, length 64
2015-10-29 10:52:30.257 tcpdump DEBUG 10:52:30.248794 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 20, length 64
2015-10-29 10:52:30.469 tcpdump DEBUG 10:52:30.464389 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 20, length 64
2015-10-29 10:52:30.473 tcpdump DEBUG 10:52:30.464906 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 20, length 64
2015-10-29 10:52:30.757 tcpdump DEBUG 10:52:30.749203 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 21, length 64
2015-10-29 10:52:30.761 tcpdump DEBUG 10:52:30.750118 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 21, length 64
2015-10-29 10:52:30.766 tcpdump DEBUG 10:52:30.753557 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:52:30.775 tcpdump DEBUG 10:52:30.754260 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:52:30.970 tcpdump DEBUG 10:52:30.965330 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 21, length 64
2015-10-29 10:52:30.974 tcpdump DEBUG 10:52:30.967843 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 21, length 64
2015-10-29 10:52:31.257 tcpdump DEBUG 10:52:31.251102 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 22, length 64
2015-10-29 10:52:31.261 tcpdump DEBUG 10:52:31.251547 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 22, length 64
2015-10-29 10:52:31.470 tcpdump DEBUG 10:52:31.466319 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 22, length 64
2015-10-29 10:52:31.475 tcpdump DEBUG 10:52:31.466801 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 22, length 64
2015-10-29 10:52:31.758 tcpdump DEBUG 10:52:31.752218 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 23, length 64
2015-10-29 10:52:31.762 tcpdump DEBUG 10:52:31.752692 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 23, length 64
2015-10-29 10:52:31.972 tcpdump DEBUG 10:52:31.966890 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 23, length 64
2015-10-29 10:52:31.976 tcpdump DEBUG 10:52:31.967325 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 23, length 64
2015-10-29 10:52:32.257 tcpdump DEBUG 10:52:32.253226 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 24, length 64
2015-10-29 10:52:32.263 tcpdump DEBUG 10:52:32.254085 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 24, length 64
2015-10-29 10:52:32.472 tcpdump DEBUG 10:52:32.467787 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 24, length 64
2015-10-29 10:52:32.477 tcpdump DEBUG 10:52:32.468235 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 24, length 64
2015-10-29 10:52:32.760 tcpdump DEBUG 10:52:32.753871 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 25, length 64
2015-10-29 10:52:32.765 tcpdump DEBUG 10:52:32.755165 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 25, length 64
2015-10-29 10:52:32.974 tcpdump DEBUG 10:52:32.968491 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 25, length 64
2015-10-29 10:52:32.978 tcpdump DEBUG 10:52:32.969016 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 25, length 64
2015-10-29 10:52:33.259 tcpdump DEBUG 10:52:33.254790 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 26, length 64
2015-10-29 10:52:33.263 tcpdump DEBUG 10:52:33.255196 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 26, length 64
2015-10-29 10:52:33.475 tcpdump DEBUG 10:52:33.469347 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 26, length 64
2015-10-29 10:52:33.480 tcpdump DEBUG 10:52:33.469905 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 26, length 64
2015-10-29 10:52:33.760 tcpdump DEBUG 10:52:33.756025 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 27, length 64
2015-10-29 10:52:33.764 tcpdump DEBUG 10:52:33.756470 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 27, length 64
2015-10-29 10:52:33.975 tcpdump DEBUG 10:52:33.970250 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 27, length 64
2015-10-29 10:52:33.979 tcpdump DEBUG 10:52:33.970650 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 27, length 64
2015-10-29 10:52:34.262 tcpdump DEBUG 10:52:34.257318 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 28, length 64
2015-10-29 10:52:34.267 tcpdump DEBUG 10:52:34.257762 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 28, length 64
2015-10-29 10:52:34.476 tcpdump DEBUG 10:52:34.470947 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 28, length 64
2015-10-29 10:52:34.480 tcpdump DEBUG 10:52:34.471318 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 28, length 64
2015-10-29 10:52:34.762 tcpdump DEBUG 10:52:34.758226 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 29, length 64
2015-10-29 10:52:34.767 tcpdump DEBUG 10:52:34.758683 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 29, length 64
2015-10-29 10:52:34.977 tcpdump DEBUG 10:52:34.972462 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 29, length 64
2015-10-29 10:52:34.981 tcpdump DEBUG 10:52:34.972937 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 29, length 64
2015-10-29 10:52:35.266 tcpdump DEBUG 10:52:35.260118 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 30, length 64
2015-10-29 10:52:35.270 tcpdump DEBUG 10:52:35.260528 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 30, length 64
2015-10-29 10:52:35.478 tcpdump DEBUG 10:52:35.473304 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 30, length 64
2015-10-29 10:52:35.482 tcpdump DEBUG 10:52:35.473742 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 30, length 64
2015-10-29 10:52:35.767 tcpdump DEBUG 10:52:35.762035 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 31, length 64
2015-10-29 10:52:35.771 tcpdump DEBUG 10:52:35.762446 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 31, length 64
2015-10-29 10:52:35.979 tcpdump DEBUG 10:52:35.973979 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 31, length 64
2015-10-29 10:52:35.983 tcpdump DEBUG 10:52:35.974396 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 31, length 64
2015-10-29 10:52:36.269 tcpdump DEBUG 10:52:36.263176 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 32, length 64
2015-10-29 10:52:36.273 tcpdump DEBUG 10:52:36.263576 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 32, length 64
2015-10-29 10:52:36.479 tcpdump DEBUG 10:52:36.474453 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 32, length 64
2015-10-29 10:52:36.483 tcpdump DEBUG 10:52:36.474905 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 32, length 64
2015-10-29 10:52:36.772 tcpdump DEBUG 10:52:36.764202 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 33, length 64
2015-10-29 10:52:36.777 tcpdump DEBUG 10:52:36.764780 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 33, length 64
2015-10-29 10:52:36.980 tcpdump DEBUG 10:52:36.975292 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 33, length 64
2015-10-29 10:52:36.984 tcpdump DEBUG 10:52:36.975746 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 33, length 64
2015-10-29 10:52:37.270 tcpdump DEBUG 10:52:37.264842 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 34, length 64
2015-10-29 10:52:37.273 tcpdump DEBUG 10:52:37.265249 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 34, length 64
2015-10-29 10:52:37.480 tcpdump DEBUG 10:52:37.476067 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 34, length 64
2015-10-29 10:52:37.484 tcpdump DEBUG 10:52:37.476481 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 34, length 64
2015-10-29 10:52:37.772 tcpdump DEBUG 10:52:37.766014 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 35, length 64
2015-10-29 10:52:37.776 tcpdump DEBUG 10:52:37.766507 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 35, length 64
2015-10-29 10:52:37.981 tcpdump DEBUG 10:52:37.976691 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 35, length 64
2015-10-29 10:52:37.985 tcpdump DEBUG 10:52:37.977111 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 35, length 64
2015-10-29 10:52:38.273 tcpdump DEBUG 10:52:38.267406 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 36, length 64
2015-10-29 10:52:38.279 tcpdump DEBUG 10:52:38.268041 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 36, length 64
2015-10-29 10:52:38.482 tcpdump DEBUG 10:52:38.477402 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 36, length 64
2015-10-29 10:52:38.486 tcpdump DEBUG 10:52:38.477874 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 36, length 64
2015-10-29 10:52:38.774 tcpdump DEBUG 10:52:38.768316 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 37, length 64
2015-10-29 10:52:38.783 tcpdump DEBUG 10:52:38.768802 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 37, length 64
2015-10-29 10:52:38.983 tcpdump DEBUG 10:52:38.978250 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 37, length 64
2015-10-29 10:52:38.987 tcpdump DEBUG 10:52:38.978682 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 37, length 64
2015-10-29 10:52:39.277 tcpdump DEBUG 10:52:39.269248 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 38, length 64
2015-10-29 10:52:39.282 tcpdump DEBUG 10:52:39.269843 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 38, length 64
2015-10-29 10:52:39.485 tcpdump DEBUG 10:52:39.479300 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 38, length 64
2015-10-29 10:52:39.489 tcpdump DEBUG 10:52:39.479729 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 38, length 64
2015-10-29 10:52:39.776 tcpdump DEBUG 10:52:39.771206 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 39, length 64
2015-10-29 10:52:39.780 tcpdump DEBUG 10:52:39.771642 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 39, length 64
2015-10-29 10:52:39.985 tcpdump DEBUG 10:52:39.980761 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 39, length 64
2015-10-29 10:52:39.989 tcpdump DEBUG 10:52:39.981176 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 39, length 64
2015-10-29 10:52:40.276 tcpdump DEBUG 10:52:40.271383 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 40, length 64
2015-10-29 10:52:40.280 tcpdump DEBUG 10:52:40.271828 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 40, length 64
2015-10-29 10:52:40.485 tcpdump DEBUG 10:52:40.481375 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 40, length 64
2015-10-29 10:52:40.489 tcpdump DEBUG 10:52:40.481816 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 40, length 64
2015-10-29 10:52:40.777 tcpdump DEBUG 10:52:40.772527 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 41, length 64
2015-10-29 10:52:40.782 tcpdump DEBUG 10:52:40.773036 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 41, length 64
2015-10-29 10:52:40.988 tcpdump DEBUG 10:52:40.982427 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 41, length 64
2015-10-29 10:52:40.992 tcpdump DEBUG 10:52:40.982908 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 41, length 64
2015-10-29 10:52:41.279 tcpdump DEBUG 10:52:41.273958 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 42, length 64
2015-10-29 10:52:41.283 tcpdump DEBUG 10:52:41.274361 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 42, length 64
2015-10-29 10:52:41.488 tcpdump DEBUG 10:52:41.482951 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 42, length 64
2015-10-29 10:52:41.492 tcpdump DEBUG 10:52:41.483361 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 42, length 64
2015-10-29 10:52:41.780 tcpdump DEBUG 10:52:41.775146 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 43, length 64
2015-10-29 10:52:41.785 tcpdump DEBUG 10:52:41.775590 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 43, length 64
2015-10-29 10:52:41.988 tcpdump DEBUG 10:52:41.983567 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 43, length 64
2015-10-29 10:52:41.991 tcpdump DEBUG 10:52:41.983987 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 43, length 64
2015-10-29 10:52:42.283 tcpdump DEBUG 10:52:42.277577 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 44, length 64
2015-10-29 10:52:42.288 tcpdump DEBUG 10:52:42.277945 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 44, length 64
2015-10-29 10:52:42.488 tcpdump DEBUG 10:52:42.484194 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 44, length 64
2015-10-29 10:52:42.492 tcpdump DEBUG 10:52:42.484609 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 44, length 64
2015-10-29 10:52:42.783 tcpdump DEBUG 10:52:42.778622 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 45, length 64
2015-10-29 10:52:42.788 tcpdump DEBUG 10:52:42.779120 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 45, length 64
2015-10-29 10:52:42.989 tcpdump DEBUG 10:52:42.984804 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 45, length 64
2015-10-29 10:52:42.993 tcpdump DEBUG 10:52:42.985242 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 45, length 64
2015-10-29 10:52:43.286 tcpdump DEBUG 10:52:43.279889 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 46, length 64
2015-10-29 10:52:43.290 tcpdump DEBUG 10:52:43.280274 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 46, length 64
2015-10-29 10:52:43.490 tcpdump DEBUG 10:52:43.485703 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 46, length 64
2015-10-29 10:52:43.494 tcpdump DEBUG 10:52:43.486119 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 46, length 64
2015-10-29 10:52:43.787 tcpdump DEBUG 10:52:43.781169 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 47, length 64
2015-10-29 10:52:43.791 tcpdump DEBUG 10:52:43.781596 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 47, length 64
2015-10-29 10:52:43.993 tcpdump DEBUG 10:52:43.986421 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 47, length 64
2015-10-29 10:52:43.997 tcpdump DEBUG 10:52:43.986856 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 47, length 64
2015-10-29 10:52:44.288 tcpdump DEBUG 10:52:44.282118 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 48, length 64
2015-10-29 10:52:44.293 tcpdump DEBUG 10:52:44.282520 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 48, length 64
2015-10-29 10:52:44.492 tcpdump DEBUG 10:52:44.487237 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 48, length 64
2015-10-29 10:52:44.495 tcpdump DEBUG 10:52:44.487619 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 48, length 64
2015-10-29 10:52:44.791 tcpdump DEBUG 10:52:44.783271 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 49, length 64
2015-10-29 10:52:44.809 tcpdump DEBUG 10:52:44.783938 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 49, length 64
2015-10-29 10:52:44.993 tcpdump DEBUG 10:52:44.988331 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 49, length 64
2015-10-29 10:52:44.997 tcpdump DEBUG 10:52:44.988850 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 49, length 64
2015-10-29 10:52:45.289 tcpdump DEBUG 10:52:45.284215 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 50, length 64
2015-10-29 10:52:45.293 tcpdump DEBUG 10:52:45.284600 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 50, length 64
2015-10-29 10:52:45.494 tcpdump DEBUG 10:52:45.489307 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 50, length 64
2015-10-29 10:52:45.498 tcpdump DEBUG 10:52:45.489753 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 50, length 64
2015-10-29 10:52:45.792 tcpdump DEBUG 10:52:45.785360 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 51, length 64
2015-10-29 10:52:45.797 tcpdump DEBUG 10:52:45.785813 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 51, length 64
2015-10-29 10:52:45.995 tcpdump DEBUG 10:52:45.990169 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 51, length 64
2015-10-29 10:52:45.999 tcpdump DEBUG 10:52:45.990588 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 51, length 64
2015-10-29 10:52:46.294 tcpdump DEBUG 10:52:46.286519 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 52, length 64
2015-10-29 10:52:46.298 tcpdump DEBUG 10:52:46.286970 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 52, length 64
2015-10-29 10:52:46.496 tcpdump DEBUG 10:52:46.491304 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 52, length 64
2015-10-29 10:52:46.500 tcpdump DEBUG 10:52:46.491755 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 52, length 64
2015-10-29 10:52:46.799 tcpdump DEBUG 10:52:46.787676 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 53, length 64
2015-10-29 10:52:46.803 tcpdump DEBUG 10:52:46.788158 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 53, length 64
2015-10-29 10:52:46.997 tcpdump DEBUG 10:52:46.992229 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 53, length 64
2015-10-29 10:52:47.001 tcpdump DEBUG 10:52:46.992663 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 53, length 64
2015-10-29 10:52:47.294 tcpdump DEBUG 10:52:47.288823 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 54, length 64
2015-10-29 10:52:47.299 tcpdump DEBUG 10:52:47.289213 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 54, length 64
2015-10-29 10:52:47.498 tcpdump DEBUG 10:52:47.493206 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 54, length 64
2015-10-29 10:52:47.502 tcpdump DEBUG 10:52:47.493627 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 54, length 64
2015-10-29 10:52:47.795 tcpdump DEBUG 10:52:47.789962 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 55, length 64
2015-10-29 10:52:47.799 tcpdump DEBUG 10:52:47.790397 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 55, length 64
2015-10-29 10:52:47.999 tcpdump DEBUG 10:52:47.994278 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 55, length 64
2015-10-29 10:52:48.003 tcpdump DEBUG 10:52:47.994696 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 55, length 64
2015-10-29 10:52:48.296 tcpdump DEBUG 10:52:48.291078 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 56, length 64
2015-10-29 10:52:48.300 tcpdump DEBUG 10:52:48.291447 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 56, length 64
2015-10-29 10:52:48.505 tcpdump DEBUG 10:52:48.499361 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 56, length 64
2015-10-29 10:52:48.509 tcpdump DEBUG 10:52:48.499822 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 56, length 64
2015-10-29 10:52:48.800 tcpdump DEBUG 10:52:48.792248 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 57, length 64
2015-10-29 10:52:48.804 tcpdump DEBUG 10:52:48.792800 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 57, length 64
2015-10-29 10:52:49.005 tcpdump DEBUG 10:52:49.000252 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 57, length 64
2015-10-29 10:52:49.009 tcpdump DEBUG 10:52:49.000671 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 57, length 64
2015-10-29 10:52:49.299 tcpdump DEBUG 10:52:49.293468 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 58, length 64
2015-10-29 10:52:49.303 tcpdump DEBUG 10:52:49.293885 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 58, length 64
2015-10-29 10:52:49.507 tcpdump DEBUG 10:52:49.502189 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 58, length 64
2015-10-29 10:52:49.511 tcpdump DEBUG 10:52:49.502563 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 58, length 64
2015-10-29 10:52:49.799 tcpdump DEBUG 10:52:49.794676 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 59, length 64
2015-10-29 10:52:49.803 tcpdump DEBUG 10:52:49.795094 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 59, length 64
2015-10-29 10:52:50.008 tcpdump DEBUG 10:52:50.003076 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 59, length 64
2015-10-29 10:52:50.012 tcpdump DEBUG 10:52:50.003489 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 59, length 64
2015-10-29 10:52:50.302 tcpdump DEBUG 10:52:50.295795 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 60, length 64
2015-10-29 10:52:50.306 tcpdump DEBUG 10:52:50.296205 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 60, length 64
2015-10-29 10:52:50.509 tcpdump DEBUG 10:52:50.503836 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 60, length 64
2015-10-29 10:52:50.513 tcpdump DEBUG 10:52:50.504265 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 60, length 64
2015-10-29 10:52:50.802 tcpdump DEBUG 10:52:50.796957 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 61, length 64
2015-10-29 10:52:50.807 tcpdump DEBUG 10:52:50.797470 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 61, length 64
2015-10-29 10:52:51.010 tcpdump DEBUG 10:52:51.004625 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 61, length 64
2015-10-29 10:52:51.014 tcpdump DEBUG 10:52:51.005161 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 61, length 64
2015-10-29 10:52:51.304 tcpdump DEBUG 10:52:51.298039 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 62, length 64
2015-10-29 10:52:51.308 tcpdump DEBUG 10:52:51.298524 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 62, length 64
2015-10-29 10:52:51.511 tcpdump DEBUG 10:52:51.505541 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 62, length 64
2015-10-29 10:52:51.514 tcpdump DEBUG 10:52:51.506161 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 62, length 64
2015-10-29 10:52:51.805 tcpdump DEBUG 10:52:51.799048 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 63, length 64
2015-10-29 10:52:51.809 tcpdump DEBUG 10:52:51.800144 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 63, length 64
2015-10-29 10:52:52.011 tcpdump DEBUG 10:52:52.006570 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 63, length 64
2015-10-29 10:52:52.015 tcpdump DEBUG 10:52:52.007004 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 63, length 64
2015-10-29 10:52:52.306 tcpdump DEBUG 10:52:52.300319 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 64, length 64
2015-10-29 10:52:52.310 tcpdump DEBUG 10:52:52.300739 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 64, length 64
2015-10-29 10:52:52.516 tcpdump DEBUG 10:52:52.507333 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 64, length 64
2015-10-29 10:52:52.520 tcpdump DEBUG 10:52:52.507935 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 64, length 64
2015-10-29 10:52:52.808 tcpdump DEBUG 10:52:52.801257 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 65, length 64
2015-10-29 10:52:52.814 tcpdump DEBUG 10:52:52.801767 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 65, length 64
2015-10-29 10:52:53.014 tcpdump DEBUG 10:52:53.008229 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 65, length 64
2015-10-29 10:52:53.022 tcpdump DEBUG 10:52:53.008803 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 65, length 64
2015-10-29 10:52:53.309 tcpdump DEBUG 10:52:53.303146 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 66, length 64
2015-10-29 10:52:53.314 tcpdump DEBUG 10:52:53.303550 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 66, length 64
2015-10-29 10:52:53.513 tcpdump DEBUG 10:52:53.509110 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 66, length 64
2015-10-29 10:52:53.518 tcpdump DEBUG 10:52:53.509529 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 66, length 64
2015-10-29 10:52:53.810 tcpdump DEBUG 10:52:53.804805 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 67, length 64
2015-10-29 10:52:53.814 tcpdump DEBUG 10:52:53.805221 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 67, length 64
2015-10-29 10:52:54.014 tcpdump DEBUG 10:52:54.009760 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 67, length 64
2015-10-29 10:52:54.018 tcpdump DEBUG 10:52:54.010164 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 67, length 64
2015-10-29 10:52:54.312 tcpdump DEBUG 10:52:54.306150 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 68, length 64
2015-10-29 10:52:54.316 tcpdump DEBUG 10:52:54.306524 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 68, length 64
2015-10-29 10:52:54.517 tcpdump DEBUG 10:52:54.510415 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 68, length 64
2015-10-29 10:52:54.521 tcpdump DEBUG 10:52:54.511059 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 68, length 64
2015-10-29 10:52:54.816 tcpdump DEBUG 10:52:54.807175 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 69, length 64
2015-10-29 10:52:54.821 tcpdump DEBUG 10:52:54.807742 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 69, length 64
2015-10-29 10:52:55.017 tcpdump DEBUG 10:52:55.011325 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 69, length 64
2015-10-29 10:52:55.021 tcpdump DEBUG 10:52:55.011799 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 69, length 64
2015-10-29 10:52:55.314 tcpdump DEBUG 10:52:55.308318 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 70, length 64
2015-10-29 10:52:55.318 tcpdump DEBUG 10:52:55.308734 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 70, length 64
2015-10-29 10:52:55.517 tcpdump DEBUG 10:52:55.510755 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:52:55.521 tcpdump DEBUG 10:52:55.512423 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 70, length 64
2015-10-29 10:52:55.525 tcpdump DEBUG 10:52:55.512633 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:52:55.529 tcpdump DEBUG 10:52:55.514799 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 70, length 64
2015-10-29 10:52:55.815 tcpdump DEBUG 10:52:55.809599 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 71, length 64
2015-10-29 10:52:55.820 tcpdump DEBUG 10:52:55.812079 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 71, length 64
2015-10-29 10:52:56.024 tcpdump DEBUG 10:52:56.017180 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 71, length 64
2015-10-29 10:52:56.028 tcpdump DEBUG 10:52:56.018117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 71, length 64
2015-10-29 10:52:56.317 tcpdump DEBUG 10:52:56.311249 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 72, length 64
2015-10-29 10:52:56.322 tcpdump DEBUG 10:52:56.311648 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 72, length 64
2015-10-29 10:52:56.522 tcpdump DEBUG 10:52:56.518113 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 72, length 64
2015-10-29 10:52:56.526 tcpdump DEBUG 10:52:56.518527 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 72, length 64
2015-10-29 10:52:56.829 tcpdump DEBUG 10:52:56.813256 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 73, length 64
2015-10-29 10:52:56.833 tcpdump DEBUG 10:52:56.813705 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 73, length 64
2015-10-29 10:52:57.026 tcpdump DEBUG 10:52:57.020732 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 73, length 64
2015-10-29 10:52:57.031 tcpdump DEBUG 10:52:57.021171 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 73, length 64
2015-10-29 10:52:57.319 tcpdump DEBUG 10:52:57.314690 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 74, length 64
2015-10-29 10:52:57.324 tcpdump DEBUG 10:52:57.315109 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 74, length 64
2015-10-29 10:52:57.526 tcpdump DEBUG 10:52:57.521557 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 74, length 64
2015-10-29 10:52:57.530 tcpdump DEBUG 10:52:57.521999 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 74, length 64
2015-10-29 10:52:57.822 tcpdump DEBUG 10:52:57.816137 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 75, length 64
2015-10-29 10:52:57.826 tcpdump DEBUG 10:52:57.816545 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 75, length 64
2015-10-29 10:52:58.031 tcpdump DEBUG 10:52:58.026054 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 75, length 64
2015-10-29 10:52:58.035 tcpdump DEBUG 10:52:58.026457 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 75, length 64
2015-10-29 10:52:58.323 tcpdump DEBUG 10:52:58.318587 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 76, length 64
2015-10-29 10:52:58.327 tcpdump DEBUG 10:52:58.319630 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 76, length 64
2015-10-29 10:52:58.532 tcpdump DEBUG 10:52:58.527197 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 76, length 64
2015-10-29 10:52:58.535 tcpdump DEBUG 10:52:58.527616 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 76, length 64
2015-10-29 10:52:58.828 tcpdump DEBUG 10:52:58.819947 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 77, length 64
2015-10-29 10:52:58.834 tcpdump DEBUG 10:52:58.820462 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 77, length 64
2015-10-29 10:52:59.034 tcpdump DEBUG 10:52:59.029164 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 77, length 64
2015-10-29 10:52:59.038 tcpdump DEBUG 10:52:59.029672 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 77, length 64
2015-10-29 10:52:59.325 tcpdump DEBUG 10:52:59.321191 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 78, length 64
2015-10-29 10:52:59.331 tcpdump DEBUG 10:52:59.321612 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 78, length 64
2015-10-29 10:52:59.540 tcpdump DEBUG 10:52:59.535045 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 78, length 64
2015-10-29 10:52:59.544 tcpdump DEBUG 10:52:59.535438 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 78, length 64
2015-10-29 10:52:59.831 tcpdump DEBUG 10:52:59.822523 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 79, length 64
2015-10-29 10:52:59.835 tcpdump DEBUG 10:52:59.823117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 79, length 64
2015-10-29 10:53:00.042 tcpdump DEBUG 10:53:00.037168 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 79, length 64
2015-10-29 10:53:00.045 tcpdump DEBUG 10:53:00.037594 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 79, length 64
2015-10-29 10:53:00.331 tcpdump DEBUG 10:53:00.323800 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 80, length 64
2015-10-29 10:53:00.335 tcpdump DEBUG 10:53:00.324219 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 80, length 64
2015-10-29 10:53:00.543 tcpdump DEBUG 10:53:00.537971 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 80, length 64
2015-10-29 10:53:00.547 tcpdump DEBUG 10:53:00.538383 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 80, length 64
2015-10-29 10:53:00.834 tcpdump DEBUG 10:53:00.825181 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 81, length 64
2015-10-29 10:53:00.839 tcpdump DEBUG 10:53:00.825775 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 81, length 64
2015-10-29 10:53:01.044 tcpdump DEBUG 10:53:01.038817 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 81, length 64
2015-10-29 10:53:01.048 tcpdump DEBUG 10:53:01.039247 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 81, length 64
2015-10-29 10:53:01.331 tcpdump DEBUG 10:53:01.326414 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 82, length 64
2015-10-29 10:53:01.335 tcpdump DEBUG 10:53:01.326866 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 82, length 64
2015-10-29 10:53:01.546 tcpdump DEBUG 10:53:01.540224 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 82, length 64
2015-10-29 10:53:01.550 tcpdump DEBUG 10:53:01.540641 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 82, length 64
2015-10-29 10:53:01.832 tcpdump DEBUG 10:53:01.827779 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 83, length 64
2015-10-29 10:53:01.837 tcpdump DEBUG 10:53:01.828193 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 83, length 64
2015-10-29 10:53:02.047 tcpdump DEBUG 10:53:02.041436 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 83, length 64
2015-10-29 10:53:02.051 tcpdump DEBUG 10:53:02.041890 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 83, length 64
2015-10-29 10:53:02.333 tcpdump DEBUG 10:53:02.329064 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 84, length 64
2015-10-29 10:53:02.338 tcpdump DEBUG 10:53:02.329486 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 84, length 64
2015-10-29 10:53:02.551 tcpdump DEBUG 10:53:02.545522 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 84, length 64
2015-10-29 10:53:02.556 tcpdump DEBUG 10:53:02.546135 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 84, length 64
2015-10-29 10:53:02.837 tcpdump DEBUG 10:53:02.830374 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 85, length 64
2015-10-29 10:53:02.842 tcpdump DEBUG 10:53:02.830948 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 85, length 64
2015-10-29 10:53:03.051 tcpdump DEBUG 10:53:03.046215 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 85, length 64
2015-10-29 10:53:03.056 tcpdump DEBUG 10:53:03.046638 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 85, length 64
2015-10-29 10:53:03.336 tcpdump DEBUG 10:53:03.331376 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 86, length 64
2015-10-29 10:53:03.341 tcpdump DEBUG 10:53:03.331913 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 86, length 64
2015-10-29 10:53:03.552 tcpdump DEBUG 10:53:03.546810 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 86, length 64
2015-10-29 10:53:03.556 tcpdump DEBUG 10:53:03.547216 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 86, length 64
2015-10-29 10:53:03.840 tcpdump DEBUG 10:53:03.832793 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 87, length 64
2015-10-29 10:53:03.844 tcpdump DEBUG 10:53:03.833200 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 87, length 64
2015-10-29 10:53:04.054 tcpdump DEBUG 10:53:04.049187 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 87, length 64
2015-10-29 10:53:04.058 tcpdump DEBUG 10:53:04.049592 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 87, length 64
2015-10-29 10:53:04.340 tcpdump DEBUG 10:53:04.334334 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 88, length 64
2015-10-29 10:53:04.344 tcpdump DEBUG 10:53:04.334774 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 88, length 64
2015-10-29 10:53:04.555 tcpdump DEBUG 10:53:04.550285 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 88, length 64
2015-10-29 10:53:04.559 tcpdump DEBUG 10:53:04.550667 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 88, length 64
2015-10-29 10:53:04.844 tcpdump DEBUG 10:53:04.835662 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 89, length 64
2015-10-29 10:53:04.849 tcpdump DEBUG 10:53:04.836200 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 89, length 64
2015-10-29 10:53:05.059 tcpdump DEBUG 10:53:05.054256 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 89, length 64
2015-10-29 10:53:05.063 tcpdump DEBUG 10:53:05.054698 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 89, length 64
2015-10-29 10:53:05.342 tcpdump DEBUG 10:53:05.337052 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 90, length 64
2015-10-29 10:53:05.351 tcpdump DEBUG 10:53:05.337668 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 90, length 64
2015-10-29 10:53:05.560 tcpdump DEBUG 10:53:05.555183 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 90, length 64
2015-10-29 10:53:05.564 tcpdump DEBUG 10:53:05.555609 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 90, length 64
2015-10-29 10:53:05.844 tcpdump DEBUG 10:53:05.838254 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 91, length 64
2015-10-29 10:53:05.848 tcpdump DEBUG 10:53:05.838660 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 91, length 64
2015-10-29 10:53:06.060 tcpdump DEBUG 10:53:06.056162 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 91, length 64
2015-10-29 10:53:06.065 tcpdump DEBUG 10:53:06.056581 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 91, length 64
2015-10-29 10:53:06.345 tcpdump DEBUG 10:53:06.336779 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:06.350 tcpdump DEBUG 10:53:06.337117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:53:06.356 tcpdump DEBUG 10:53:06.339417 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 92, length 64
2015-10-29 10:53:06.360 tcpdump DEBUG 10:53:06.340040 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 92, length 64
2015-10-29 10:53:06.567 tcpdump DEBUG 10:53:06.562291 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 92, length 64
2015-10-29 10:53:06.571 tcpdump DEBUG 10:53:06.562737 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 92, length 64
2015-10-29 10:53:06.850 tcpdump DEBUG 10:53:06.840498 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 93, length 64
2015-10-29 10:53:06.854 tcpdump DEBUG 10:53:06.841084 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 93, length 64
2015-10-29 10:53:07.070 tcpdump DEBUG 10:53:07.064155 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 93, length 64
2015-10-29 10:53:07.074 tcpdump DEBUG 10:53:07.064587 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 93, length 64
2015-10-29 10:53:07.347 tcpdump DEBUG 10:53:07.342840 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 94, length 64
2015-10-29 10:53:07.353 tcpdump DEBUG 10:53:07.343260 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 94, length 64
2015-10-29 10:53:07.570 tcpdump DEBUG 10:53:07.566216 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 94, length 64
2015-10-29 10:53:07.575 tcpdump DEBUG 10:53:07.566615 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 94, length 64
2015-10-29 10:53:07.849 tcpdump DEBUG 10:53:07.844179 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 95, length 64
2015-10-29 10:53:07.853 tcpdump DEBUG 10:53:07.844590 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 95, length 64
2015-10-29 10:53:08.071 tcpdump DEBUG 10:53:08.066852 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 95, length 64
2015-10-29 10:53:08.075 tcpdump DEBUG 10:53:08.067255 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 95, length 64
2015-10-29 10:53:08.351 tcpdump DEBUG 10:53:08.345481 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 96, length 64
2015-10-29 10:53:08.358 tcpdump DEBUG 10:53:08.349383 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 96, length 64
2015-10-29 10:53:08.573 tcpdump DEBUG 10:53:08.567241 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 96, length 64
2015-10-29 10:53:08.578 tcpdump DEBUG 10:53:08.567814 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 96, length 64
2015-10-29 10:53:08.861 tcpdump DEBUG 10:53:08.846232 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 97, length 64
2015-10-29 10:53:08.876 tcpdump DEBUG 10:53:08.850788 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 97, length 64
2015-10-29 10:53:09.077 tcpdump DEBUG 10:53:09.072190 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 97, length 64
2015-10-29 10:53:09.084 tcpdump DEBUG 10:53:09.072733 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 97, length 64
2015-10-29 10:53:09.354 tcpdump DEBUG 10:53:09.348560 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 98, length 64
2015-10-29 10:53:09.360 tcpdump DEBUG 10:53:09.349320 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 98, length 64
2015-10-29 10:53:09.579 tcpdump DEBUG 10:53:09.573269 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 98, length 64
2015-10-29 10:53:09.584 tcpdump DEBUG 10:53:09.573910 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 98, length 64
2015-10-29 10:53:09.861 tcpdump DEBUG 10:53:09.849655 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 99, length 64
2015-10-29 10:53:09.867 tcpdump DEBUG 10:53:09.850359 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 99, length 64
2015-10-29 10:53:10.081 tcpdump DEBUG 10:53:10.074222 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 99, length 64
2015-10-29 10:53:10.087 tcpdump DEBUG 10:53:10.074792 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 99, length 64
2015-10-29 10:53:10.358 tcpdump DEBUG 10:53:10.351279 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 100, length 64
2015-10-29 10:53:10.363 tcpdump DEBUG 10:53:10.351821 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 100, length 64
2015-10-29 10:53:10.584 tcpdump DEBUG 10:53:10.575498 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 100, length 64
2015-10-29 10:53:10.590 tcpdump DEBUG 10:53:10.576025 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 100, length 64
2015-10-29 10:53:10.860 tcpdump DEBUG 10:53:10.852310 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 101, length 64
2015-10-29 10:53:10.868 tcpdump DEBUG 10:53:10.852981 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 101, length 64
2015-10-29 10:53:11.082 tcpdump DEBUG 10:53:11.076270 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 101, length 64
2015-10-29 10:53:11.087 tcpdump DEBUG 10:53:11.077739 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 101, length 64
2015-10-29 10:53:11.364 tcpdump DEBUG 10:53:11.353474 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 102, length 64
2015-10-29 10:53:11.369 tcpdump DEBUG 10:53:11.354248 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 102, length 64
2015-10-29 10:53:11.585 tcpdump DEBUG 10:53:11.577140 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 102, length 64
2015-10-29 10:53:11.592 tcpdump DEBUG 10:53:11.579437 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 102, length 64
2015-10-29 10:53:11.861 tcpdump DEBUG 10:53:11.854983 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 103, length 64
2015-10-29 10:53:11.866 tcpdump DEBUG 10:53:11.855479 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 103, length 64
2015-10-29 10:53:12.083 tcpdump DEBUG 10:53:12.078213 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 103, length 64
2015-10-29 10:53:12.088 tcpdump DEBUG 10:53:12.078685 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 103, length 64
2015-10-29 10:53:12.365 tcpdump DEBUG 10:53:12.358206 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 104, length 64
2015-10-29 10:53:12.371 tcpdump DEBUG 10:53:12.359139 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 104, length 64
2015-10-29 10:53:12.591 tcpdump DEBUG 10:53:12.579204 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 104, length 64
2015-10-29 10:53:12.866 tcpdump DEBUG 10:53:12.859410 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 105, length 64
2015-10-29 10:53:13.084 tcpdump DEBUG 10:53:13.079603 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 105, length 64
2015-10-29 10:53:13.364 tcpdump DEBUG 10:53:13.359317 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 106, length 64
2015-10-29 10:53:13.594 tcpdump DEBUG 10:53:13.590492 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 106, length 64
2015-10-29 10:53:13.873 tcpdump DEBUG 10:53:13.869265 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 107, length 64
2015-10-29 10:53:14.096 tcpdump DEBUG 10:53:14.092203 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 107, length 64
2015-10-29 10:53:14.372 tcpdump DEBUG 10:53:14.369250 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 108, length 64
2015-10-29 10:53:14.596 tcpdump DEBUG 10:53:14.593106 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 108, length 64
2015-10-29 10:53:14.884 tcpdump DEBUG 10:53:14.879354 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 109, length 64
2015-10-29 10:53:15.099 tcpdump DEBUG 10:53:15.095350 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 109, length 64
2015-10-29 10:53:15.382 tcpdump DEBUG 10:53:15.379178 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 110, length 64
2015-10-29 10:53:15.609 tcpdump DEBUG 10:53:15.605500 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 110, length 64
2015-10-29 10:53:15.893 tcpdump DEBUG 10:53:15.889288 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 111, length 64
2015-10-29 10:53:16.110 tcpdump DEBUG 10:53:16.106203 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 111, length 64
2015-10-29 10:53:16.394 tcpdump DEBUG 10:53:16.389144 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 112, length 64
2015-10-29 10:53:16.611 tcpdump DEBUG 10:53:16.606239 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 112, length 64
2015-10-29 10:53:16.894 tcpdump DEBUG 10:53:16.889275 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 113, length 64
2015-10-29 10:53:17.289 tcpdump DEBUG tcpdump: pcap_loop: The interface went down
2015-10-29 10:53:17.295 tcpdump DEBUG 376 packets captured
2015-10-29 10:53:17.299 tcpdump DEBUG 376 packets received by filter
2015-10-29 10:53:17.303 tcpdump DEBUG 0 packets dropped by kernel
2015-10-29 10:54:20.072 tcpdump DEBUG listening on qvo2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:54:20.162 tcpdump DEBUG 10:54:20.157789 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:20.539 tcpdump DEBUG 10:54:20.534856 4e:2d:70:74:20:e6 > 33:33:ff:74:20:e6, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff74:20e6: ICMP6, neighbor solicitation, who has fe80::4c2d:70ff:fe74:20e6, length 24
2015-10-29 10:54:20.668 tcpdump DEBUG 10:54:20.664170 6e:a1:8f:27:ea:c7 > 33:33:ff:27:ea:c7, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff27:eac7: ICMP6, neighbor solicitation, who has fe80::6ca1:8fff:fe27:eac7, length 24
2015-10-29 10:54:20.678 tcpdump DEBUG 10:54:20.674790 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:21.541 tcpdump DEBUG 10:54:21.536841 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::4c2d:70ff:fe74:20e6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:21.545 tcpdump DEBUG 10:54:21.536930 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::4c2d:70ff:fe74:20e6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:21.549 tcpdump DEBUG 10:54:21.544866 4e:2d:70:74:20:e6 > 33:33:ff:1e:28:f6, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff1e:28f6: ICMP6, neighbor solicitation, who has fe80::2421:57ff:fe1e:28f6, length 24
2015-10-29 10:54:21.671 tcpdump DEBUG 10:54:21.666828 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::6ca1:8fff:fe27:eac7 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:21.678 tcpdump DEBUG 10:54:21.666957 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::6ca1:8fff:fe27:eac7 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:21.766 tcpdump DEBUG 10:54:21.761793 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::6ca1:8fff:fe27:eac7 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:22.162 tcpdump DEBUG 10:54:22.154811 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::4c2d:70ff:fe74:20e6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:22.572 tcpdump DEBUG 10:54:22.547959 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::2421:57ff:fe1e:28f6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:22.578 tcpdump DEBUG 10:54:22.548085 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:23.360 tcpdump DEBUG 10:54:23.354840 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::2421:57ff:fe1e:28f6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:25.551 tcpdump DEBUG 10:54:25.542805 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::4c2d:70ff:fe74:20e6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:25.678 tcpdump DEBUG 10:54:25.670833 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::6ca1:8fff:fe27:eac7 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:26.565 tcpdump DEBUG 10:54:26.550977 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:27.636 tcpdump DEBUG 10:54:27.632104 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:27.787 tcpdump DEBUG 10:54:27.783399 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:28.037 tcpdump DEBUG 10:54:28.033301 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:28.387 tcpdump DEBUG 10:54:28.383250 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:29.556 tcpdump DEBUG 10:54:29.550796 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::4c2d:70ff:fe74:20e6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:29.682 tcpdump DEBUG 10:54:29.678794 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::6ca1:8fff:fe27:eac7 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:30.566 tcpdump DEBUG 10:54:30.558857 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:33.739 tcpdump DEBUG 10:54:33.734518 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 266, length 64
2015-10-29 10:54:33.744 tcpdump DEBUG 10:54:33.735477 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 266, length 64
2015-10-29 10:54:33.866 tcpdump DEBUG 10:54:33.860811 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 266, length 64
2015-10-29 10:54:33.871 tcpdump DEBUG 10:54:33.861274 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 266, length 64
2015-10-29 10:54:34.241 tcpdump DEBUG 10:54:34.235595 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 267, length 64
2015-10-29 10:54:34.245 tcpdump DEBUG 10:54:34.236046 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 267, length 64
2015-10-29 10:54:34.367 tcpdump DEBUG 10:54:34.361843 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 267, length 64
2015-10-29 10:54:34.372 tcpdump DEBUG 10:54:34.362368 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 267, length 64
2015-10-29 10:54:34.743 tcpdump DEBUG 10:54:34.735693 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 268, length 64
2015-10-29 10:54:34.748 tcpdump DEBUG 10:54:34.736248 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 268, length 64
2015-10-29 10:54:34.868 tcpdump DEBUG 10:54:34.863708 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 268, length 64
2015-10-29 10:54:34.872 tcpdump DEBUG 10:54:34.864117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 268, length 64
2015-10-29 10:54:35.248 tcpdump DEBUG 10:54:35.242563 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 269, length 64
2015-10-29 10:54:35.253 tcpdump DEBUG 10:54:35.242987 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 269, length 64
2015-10-29 10:54:35.370 tcpdump DEBUG 10:54:35.364358 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 269, length 64
2015-10-29 10:54:35.374 tcpdump DEBUG 10:54:35.364783 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 269, length 64
2015-10-29 10:54:35.751 tcpdump DEBUG 10:54:35.743798 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 270, length 64
2015-10-29 10:54:35.756 tcpdump DEBUG 10:54:35.744324 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 270, length 64
2015-10-29 10:54:35.871 tcpdump DEBUG 10:54:35.865806 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 270, length 64
2015-10-29 10:54:35.875 tcpdump DEBUG 10:54:35.866239 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 270, length 64
2015-10-29 10:54:36.256 tcpdump DEBUG 10:54:36.244975 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 271, length 64
2015-10-29 10:54:36.264 tcpdump DEBUG 10:54:36.245557 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 271, length 64
2015-10-29 10:54:36.372 tcpdump DEBUG 10:54:36.366816 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 271, length 64
2015-10-29 10:54:36.378 tcpdump DEBUG 10:54:36.367361 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 271, length 64
2015-10-29 10:54:36.752 tcpdump DEBUG 10:54:36.745884 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 272, length 64
2015-10-29 10:54:36.758 tcpdump DEBUG 10:54:36.746447 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 272, length 64
2015-10-29 10:54:36.874 tcpdump DEBUG 10:54:36.868755 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 272, length 64
2015-10-29 10:54:36.879 tcpdump DEBUG 10:54:36.869203 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 272, length 64
2015-10-29 10:54:37.255 tcpdump DEBUG 10:54:37.246689 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 273, length 64
2015-10-29 10:54:37.259 tcpdump DEBUG 10:54:37.247237 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 273, length 64
2015-10-29 10:54:37.375 tcpdump DEBUG 10:54:37.369794 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 273, length 64
2015-10-29 10:54:37.380 tcpdump DEBUG 10:54:37.370321 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 273, length 64
2015-10-29 10:54:37.755 tcpdump DEBUG 10:54:37.748823 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 274, length 64
2015-10-29 10:54:37.763 tcpdump DEBUG 10:54:37.750857 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 274, length 64
2015-10-29 10:54:37.875 tcpdump DEBUG 10:54:37.870066 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 274, length 64
2015-10-29 10:54:37.879 tcpdump DEBUG 10:54:37.870578 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 274, length 64
2015-10-29 10:54:38.256 tcpdump DEBUG 10:54:38.249694 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 275, length 64
2015-10-29 10:54:38.260 tcpdump DEBUG 10:54:38.250115 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 275, length 64
2015-10-29 10:54:38.379 tcpdump DEBUG 10:54:38.374015 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 275, length 64
2015-10-29 10:54:38.383 tcpdump DEBUG 10:54:38.374425 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 275, length 64
2015-10-29 10:54:38.758 tcpdump DEBUG 10:54:38.751120 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 276, length 64
2015-10-29 10:54:38.763 tcpdump DEBUG 10:54:38.751538 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 276, length 64
2015-10-29 10:54:38.882 tcpdump DEBUG 10:54:38.876727 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 276, length 64
2015-10-29 10:54:38.887 tcpdump DEBUG 10:54:38.877229 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 276, length 64
2015-10-29 10:54:39.257 tcpdump DEBUG 10:54:39.252247 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 277, length 64
2015-10-29 10:54:39.264 tcpdump DEBUG 10:54:39.252727 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 277, length 64
2015-10-29 10:54:39.383 tcpdump DEBUG 10:54:39.377345 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 277, length 64
2015-10-29 10:54:39.389 tcpdump DEBUG 10:54:39.377837 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 277, length 64
2015-10-29 10:54:39.759 tcpdump DEBUG 10:54:39.752754 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 278, length 64
2015-10-29 10:54:39.764 tcpdump DEBUG 10:54:39.753307 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 278, length 64
2015-10-29 10:54:39.884 tcpdump DEBUG 10:54:39.879620 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 278, length 64
2015-10-29 10:54:39.889 tcpdump DEBUG 10:54:39.880153 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 278, length 64
2015-10-29 10:54:40.258 tcpdump DEBUG 10:54:40.253821 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 279, length 64
2015-10-29 10:54:40.263 tcpdump DEBUG 10:54:40.254248 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 279, length 64
2015-10-29 10:54:40.384 tcpdump DEBUG 10:54:40.379360 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 279, length 64
2015-10-29 10:54:40.395 tcpdump DEBUG 10:54:40.379961 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 279, length 64
2015-10-29 10:54:40.767 tcpdump DEBUG 10:54:40.755173 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 280, length 64
2015-10-29 10:54:40.771 tcpdump DEBUG 10:54:40.757046 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 280, length 64
2015-10-29 10:54:40.888 tcpdump DEBUG 10:54:40.883645 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 280, length 64
2015-10-29 10:54:40.893 tcpdump DEBUG 10:54:40.884171 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 280, length 64
2015-10-29 10:54:41.261 tcpdump DEBUG 10:54:41.255816 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 281, length 64
2015-10-29 10:54:41.266 tcpdump DEBUG 10:54:41.256306 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 281, length 64
2015-10-29 10:54:41.390 tcpdump DEBUG 10:54:41.385687 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 281, length 64
2015-10-29 10:54:41.394 tcpdump DEBUG 10:54:41.386119 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 281, length 64
2015-10-29 10:54:41.762 tcpdump DEBUG 10:54:41.757077 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 282, length 64
2015-10-29 10:54:41.767 tcpdump DEBUG 10:54:41.757507 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 282, length 64
2015-10-29 10:54:41.891 tcpdump DEBUG 10:54:41.886311 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 282, length 64
2015-10-29 10:54:41.895 tcpdump DEBUG 10:54:41.886775 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 282, length 64
2015-10-29 10:54:42.269 tcpdump DEBUG 10:54:42.258440 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 283, length 64
2015-10-29 10:54:42.273 tcpdump DEBUG 10:54:42.258956 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 283, length 64
2015-10-29 10:54:42.393 tcpdump DEBUG 10:54:42.387230 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 283, length 64
2015-10-29 10:54:42.397 tcpdump DEBUG 10:54:42.387664 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 283, length 64
2015-10-29 10:54:42.765 tcpdump DEBUG 10:54:42.759014 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 284, length 64
2015-10-29 10:54:42.770 tcpdump DEBUG 10:54:42.759440 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 284, length 64
2015-10-29 10:54:42.893 tcpdump DEBUG 10:54:42.887969 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 284, length 64
2015-10-29 10:54:42.897 tcpdump DEBUG 10:54:42.888413 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 284, length 64
2015-10-29 10:54:43.268 tcpdump DEBUG 10:54:43.260448 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 285, length 64
2015-10-29 10:54:43.275 tcpdump DEBUG 10:54:43.261041 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 285, length 64
2015-10-29 10:54:43.393 tcpdump DEBUG 10:54:43.388606 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 285, length 64
2015-10-29 10:54:43.397 tcpdump DEBUG 10:54:43.389097 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 285, length 64
2015-10-29 10:54:43.768 tcpdump DEBUG 10:54:43.761320 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 286, length 64
2015-10-29 10:54:43.772 tcpdump DEBUG 10:54:43.761800 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 286, length 64
2015-10-29 10:54:43.894 tcpdump DEBUG 10:54:43.889306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 286, length 64
2015-10-29 10:54:43.898 tcpdump DEBUG 10:54:43.889788 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 286, length 64
2015-10-29 10:54:44.267 tcpdump DEBUG 10:54:44.262210 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 287, length 64
2015-10-29 10:54:44.273 tcpdump DEBUG 10:54:44.262890 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 287, length 64
2015-10-29 10:54:44.395 tcpdump DEBUG 10:54:44.390009 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 287, length 64
2015-10-29 10:54:44.399 tcpdump DEBUG 10:54:44.390504 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 287, length 64
2015-10-29 10:54:44.769 tcpdump DEBUG 10:54:44.763199 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 288, length 64
2015-10-29 10:54:44.773 tcpdump DEBUG 10:54:44.763612 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 288, length 64
2015-10-29 10:54:44.896 tcpdump DEBUG 10:54:44.890588 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 288, length 64
2015-10-29 10:54:44.901 tcpdump DEBUG 10:54:44.891161 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 288, length 64
2015-10-29 10:54:45.270 tcpdump DEBUG 10:54:45.264875 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 289, length 64
2015-10-29 10:54:45.274 tcpdump DEBUG 10:54:45.265279 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 289, length 64
2015-10-29 10:54:45.397 tcpdump DEBUG 10:54:45.391152 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 289, length 64
2015-10-29 10:54:45.402 tcpdump DEBUG 10:54:45.391568 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 289, length 64
2015-10-29 10:54:45.772 tcpdump DEBUG 10:54:45.766039 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 290, length 64
2015-10-29 10:54:45.776 tcpdump DEBUG 10:54:45.766452 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 290, length 64
2015-10-29 10:54:45.897 tcpdump DEBUG 10:54:45.891798 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 290, length 64
2015-10-29 10:54:45.901 tcpdump DEBUG 10:54:45.892220 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 290, length 64
2015-10-29 10:54:46.276 tcpdump DEBUG 10:54:46.267157 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 291, length 64
2015-10-29 10:54:46.280 tcpdump DEBUG 10:54:46.267678 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 291, length 64
2015-10-29 10:54:46.397 tcpdump DEBUG 10:54:46.392445 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 291, length 64
2015-10-29 10:54:46.401 tcpdump DEBUG 10:54:46.392902 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 291, length 64
2015-10-29 10:54:46.773 tcpdump DEBUG 10:54:46.768628 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 292, length 64
2015-10-29 10:54:46.778 tcpdump DEBUG 10:54:46.769025 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 292, length 64
2015-10-29 10:54:46.898 tcpdump DEBUG 10:54:46.893629 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 292, length 64
2015-10-29 10:54:46.902 tcpdump DEBUG 10:54:46.894044 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 292, length 64
2015-10-29 10:54:47.275 tcpdump DEBUG 10:54:47.270094 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 293, length 64
2015-10-29 10:54:47.279 tcpdump DEBUG 10:54:47.270494 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 293, length 64
2015-10-29 10:54:47.398 tcpdump DEBUG 10:54:47.394325 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 293, length 64
2015-10-29 10:54:47.403 tcpdump DEBUG 10:54:47.394822 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 293, length 64
2015-10-29 10:54:47.778 tcpdump DEBUG 10:54:47.771362 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 294, length 64
2015-10-29 10:54:47.782 tcpdump DEBUG 10:54:47.771798 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 294, length 64
2015-10-29 10:54:47.899 tcpdump DEBUG 10:54:47.895012 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 294, length 64
2015-10-29 10:54:47.903 tcpdump DEBUG 10:54:47.895440 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 294, length 64
2015-10-29 10:54:48.284 tcpdump DEBUG 10:54:48.272248 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 295, length 64
2015-10-29 10:54:48.288 tcpdump DEBUG 10:54:48.272733 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 295, length 64
2015-10-29 10:54:48.400 tcpdump DEBUG 10:54:48.395653 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 295, length 64
2015-10-29 10:54:48.407 tcpdump DEBUG 10:54:48.396202 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 295, length 64
2015-10-29 10:54:48.777 tcpdump DEBUG 10:54:48.772818 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 296, length 64
2015-10-29 10:54:48.782 tcpdump DEBUG 10:54:48.773237 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 296, length 64
2015-10-29 10:54:48.901 tcpdump DEBUG 10:54:48.896573 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 296, length 64
2015-10-29 10:54:48.905 tcpdump DEBUG 10:54:48.897070 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 296, length 64
2015-10-29 10:54:49.279 tcpdump DEBUG 10:54:49.274185 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 297, length 64
2015-10-29 10:54:49.284 tcpdump DEBUG 10:54:49.274586 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 297, length 64
2015-10-29 10:54:49.402 tcpdump DEBUG 10:54:49.397406 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 297, length 64
2015-10-29 10:54:49.406 tcpdump DEBUG 10:54:49.397864 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 297, length 64
2015-10-29 10:54:49.780 tcpdump DEBUG 10:54:49.775435 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 298, length 64
2015-10-29 10:54:49.785 tcpdump DEBUG 10:54:49.775834 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 298, length 64
2015-10-29 10:54:49.904 tcpdump DEBUG 10:54:49.898470 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 298, length 64
2015-10-29 10:54:49.908 tcpdump DEBUG 10:54:49.898898 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 298, length 64
2015-10-29 10:54:50.275 tcpdump DEBUG 10:54:50.269704 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:54:50.279 tcpdump DEBUG 10:54:50.271462 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:54:50.287 tcpdump DEBUG 10:54:50.277253 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 299, length 64
2015-10-29 10:54:50.292 tcpdump DEBUG 10:54:50.280378 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 299, length 64
2015-10-29 10:54:50.404 tcpdump DEBUG 10:54:50.399399 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 299, length 64
2015-10-29 10:54:50.407 tcpdump DEBUG 10:54:50.399833 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 299, length 64
2015-10-29 10:54:50.782 tcpdump DEBUG 10:54:50.777931 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 300, length 64
2015-10-29 10:54:50.787 tcpdump DEBUG 10:54:50.778341 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 300, length 64
2015-10-29 10:54:50.906 tcpdump DEBUG 10:54:50.900052 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 300, length 64
2015-10-29 10:54:50.913 tcpdump DEBUG 10:54:50.900472 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 300, length 64
2015-10-29 10:54:51.287 tcpdump DEBUG 10:54:51.282493 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 301, length 64
2015-10-29 10:54:51.291 tcpdump DEBUG 10:54:51.282923 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 301, length 64
2015-10-29 10:54:51.405 tcpdump DEBUG 10:54:51.400349 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 301, length 64
2015-10-29 10:54:51.409 tcpdump DEBUG 10:54:51.400803 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 301, length 64
2015-10-29 10:54:51.789 tcpdump DEBUG 10:54:51.783912 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 302, length 64
2015-10-29 10:54:51.794 tcpdump DEBUG 10:54:51.784315 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 302, length 64
2015-10-29 10:54:51.906 tcpdump DEBUG 10:54:51.901341 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 302, length 64
2015-10-29 10:54:51.910 tcpdump DEBUG 10:54:51.901793 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 302, length 64
2015-10-29 10:54:52.294 tcpdump DEBUG 10:54:52.285149 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 303, length 64
2015-10-29 10:54:52.299 tcpdump DEBUG 10:54:52.285558 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 303, length 64
2015-10-29 10:54:52.406 tcpdump DEBUG 10:54:52.401999 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 303, length 64
2015-10-29 10:54:52.412 tcpdump DEBUG 10:54:52.402431 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 303, length 64
2015-10-29 10:54:52.792 tcpdump DEBUG 10:54:52.785897 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 304, length 64
2015-10-29 10:54:52.796 tcpdump DEBUG 10:54:52.786302 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 304, length 64
2015-10-29 10:54:52.907 tcpdump DEBUG 10:54:52.903019 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 304, length 64
2015-10-29 10:54:52.911 tcpdump DEBUG 10:54:52.903436 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 304, length 64
2015-10-29 10:54:53.298 tcpdump DEBUG 10:54:53.292223 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 305, length 64
2015-10-29 10:54:53.302 tcpdump DEBUG 10:54:53.292615 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 305, length 64
2015-10-29 10:54:53.408 tcpdump DEBUG 10:54:53.403287 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 305, length 64
2015-10-29 10:54:53.413 tcpdump DEBUG 10:54:53.403751 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 305, length 64
2015-10-29 10:54:53.799 tcpdump DEBUG 10:54:53.793438 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 306, length 64
2015-10-29 10:54:53.803 tcpdump DEBUG 10:54:53.793891 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 306, length 64
2015-10-29 10:54:53.909 tcpdump DEBUG 10:54:53.904059 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 306, length 64
2015-10-29 10:54:53.913 tcpdump DEBUG 10:54:53.904469 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 306, length 64
2015-10-29 10:54:54.301 tcpdump DEBUG 10:54:54.294510 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 307, length 64
2015-10-29 10:54:54.307 tcpdump DEBUG 10:54:54.294996 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 307, length 64
2015-10-29 10:54:54.410 tcpdump DEBUG 10:54:54.404868 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 307, length 64
2015-10-29 10:54:54.414 tcpdump DEBUG 10:54:54.405291 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 307, length 64
2015-10-29 10:54:54.802 tcpdump DEBUG 10:54:54.795897 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 308, length 64
2015-10-29 10:54:54.806 tcpdump DEBUG 10:54:54.796330 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 308, length 64
2015-10-29 10:54:54.910 tcpdump DEBUG 10:54:54.905564 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 308, length 64
2015-10-29 10:54:54.914 tcpdump DEBUG 10:54:54.906000 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 308, length 64
2015-10-29 10:54:55.305 tcpdump DEBUG 10:54:55.299501 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 309, length 64
2015-10-29 10:54:55.309 tcpdump DEBUG 10:54:55.299925 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 309, length 64
2015-10-29 10:54:55.411 tcpdump DEBUG 10:54:55.406382 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 309, length 64
2015-10-29 10:54:55.415 tcpdump DEBUG 10:54:55.406828 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 309, length 64
2015-10-29 10:54:55.806 tcpdump DEBUG 10:54:55.800754 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 310, length 64
2015-10-29 10:54:55.810 tcpdump DEBUG 10:54:55.801178 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 310, length 64
2015-10-29 10:54:55.912 tcpdump DEBUG 10:54:55.907175 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 310, length 64
2015-10-29 10:54:55.916 tcpdump DEBUG 10:54:55.907593 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 310, length 64
2015-10-29 10:54:56.309 tcpdump DEBUG 10:54:56.301902 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 311, length 64
2015-10-29 10:54:56.313 tcpdump DEBUG 10:54:56.302433 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 311, length 64
2015-10-29 10:54:56.413 tcpdump DEBUG 10:54:56.407989 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 311, length 64
2015-10-29 10:54:56.416 tcpdump DEBUG 10:54:56.408424 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 311, length 64
2015-10-29 10:54:56.808 tcpdump DEBUG 10:54:56.803093 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 312, length 64
2015-10-29 10:54:56.812 tcpdump DEBUG 10:54:56.803553 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 312, length 64
2015-10-29 10:54:56.913 tcpdump DEBUG 10:54:56.908857 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 312, length 64
2015-10-29 10:54:56.917 tcpdump DEBUG 10:54:56.909296 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 312, length 64
2015-10-29 10:54:57.310 tcpdump DEBUG 10:54:57.304314 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 313, length 64
2015-10-29 10:54:57.314 tcpdump DEBUG 10:54:57.304741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 313, length 64
2015-10-29 10:54:57.414 tcpdump DEBUG 10:54:57.409539 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 313, length 64
2015-10-29 10:54:57.418 tcpdump DEBUG 10:54:57.409990 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 313, length 64
2015-10-29 10:54:57.810 tcpdump DEBUG 10:54:57.805603 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 314, length 64
2015-10-29 10:54:57.815 tcpdump DEBUG 10:54:57.806062 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 314, length 64
2015-10-29 10:54:57.914 tcpdump DEBUG 10:54:57.910264 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 314, length 64
2015-10-29 10:54:57.918 tcpdump DEBUG 10:54:57.910668 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 314, length 64
2015-10-29 10:54:58.314 tcpdump DEBUG 10:54:58.306869 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 315, length 64
2015-10-29 10:54:58.319 tcpdump DEBUG 10:54:58.307400 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 315, length 64
2015-10-29 10:54:58.416 tcpdump DEBUG 10:54:58.410973 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 315, length 64
2015-10-29 10:54:58.420 tcpdump DEBUG 10:54:58.411669 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 315, length 64
2015-10-29 10:54:58.814 tcpdump DEBUG 10:54:58.808024 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 316, length 64
2015-10-29 10:54:58.818 tcpdump DEBUG 10:54:58.808483 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 316, length 64
2015-10-29 10:54:58.917 tcpdump DEBUG 10:54:58.912004 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 316, length 64
2015-10-29 10:54:58.921 tcpdump DEBUG 10:54:58.912504 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 316, length 64
2015-10-29 10:54:59.315 tcpdump DEBUG 10:54:59.309201 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 317, length 64
2015-10-29 10:54:59.319 tcpdump DEBUG 10:54:59.309597 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 317, length 64
2015-10-29 10:54:59.417 tcpdump DEBUG 10:54:59.412970 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 317, length 64
2015-10-29 10:54:59.421 tcpdump DEBUG 10:54:59.413432 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 317, length 64
2015-10-29 10:54:59.817 tcpdump DEBUG 10:54:59.810556 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 318, length 64
2015-10-29 10:54:59.822 tcpdump DEBUG 10:54:59.811040 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 318, length 64
2015-10-29 10:54:59.919 tcpdump DEBUG 10:54:59.913857 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 318, length 64
2015-10-29 10:54:59.924 tcpdump DEBUG 10:54:59.914254 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 318, length 64
2015-10-29 10:55:00.317 tcpdump DEBUG 10:55:00.311767 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 319, length 64
2015-10-29 10:55:00.324 tcpdump DEBUG 10:55:00.312312 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 319, length 64
2015-10-29 10:55:00.419 tcpdump DEBUG 10:55:00.414511 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 319, length 64
2015-10-29 10:55:00.423 tcpdump DEBUG 10:55:00.415063 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 319, length 64
2015-10-29 10:55:00.818 tcpdump DEBUG 10:55:00.812972 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 320, length 64
2015-10-29 10:55:00.822 tcpdump DEBUG 10:55:00.813397 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 320, length 64
2015-10-29 10:55:00.916 tcpdump DEBUG 10:55:00.911624 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:55:00.920 tcpdump DEBUG 10:55:00.912618 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:55:00.924 tcpdump DEBUG 10:55:00.915072 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 320, length 64
2015-10-29 10:55:00.929 tcpdump DEBUG 10:55:00.916425 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 320, length 64
2015-10-29 10:55:01.322 tcpdump DEBUG 10:55:01.314316 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 321, length 64
2015-10-29 10:55:01.327 tcpdump DEBUG 10:55:01.314786 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 321, length 64
2015-10-29 10:55:01.421 tcpdump DEBUG 10:55:01.415744 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 321, length 64
2015-10-29 10:55:01.425 tcpdump DEBUG 10:55:01.418091 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 321, length 64
2015-10-29 10:55:01.822 tcpdump DEBUG 10:55:01.815500 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 322, length 64
2015-10-29 10:55:01.826 tcpdump DEBUG 10:55:01.816013 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 322, length 64
2015-10-29 10:55:01.921 tcpdump DEBUG 10:55:01.916108 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 322, length 64
2015-10-29 10:55:01.926 tcpdump DEBUG 10:55:01.916565 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 322, length 64
2015-10-29 10:55:02.323 tcpdump DEBUG 10:55:02.316672 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 323, length 64
2015-10-29 10:55:02.327 tcpdump DEBUG 10:55:02.317236 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 323, length 64
2015-10-29 10:55:02.421 tcpdump DEBUG 10:55:02.417013 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 323, length 64
2015-10-29 10:55:02.425 tcpdump DEBUG 10:55:02.417519 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 323, length 64
2015-10-29 10:55:02.823 tcpdump DEBUG 10:55:02.817998 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 324, length 64
2015-10-29 10:55:02.828 tcpdump DEBUG 10:55:02.818555 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 324, length 64
2015-10-29 10:55:02.922 tcpdump DEBUG 10:55:02.917985 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 324, length 64
2015-10-29 10:55:02.928 tcpdump DEBUG 10:55:02.918422 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 324, length 64
2015-10-29 10:55:03.325 tcpdump DEBUG 10:55:03.319336 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 325, length 64
2015-10-29 10:55:03.329 tcpdump DEBUG 10:55:03.319765 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 325, length 64
2015-10-29 10:55:03.424 tcpdump DEBUG 10:55:03.418894 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 325, length 64
2015-10-29 10:55:03.428 tcpdump DEBUG 10:55:03.419314 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 325, length 64
2015-10-29 10:55:03.825 tcpdump DEBUG 10:55:03.820243 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 326, length 64
2015-10-29 10:55:03.829 tcpdump DEBUG 10:55:03.820675 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 326, length 64
2015-10-29 10:55:03.926 tcpdump DEBUG 10:55:03.920274 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 326, length 64
2015-10-29 10:55:03.930 tcpdump DEBUG 10:55:03.920688 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 326, length 64
2015-10-29 10:55:04.328 tcpdump DEBUG 10:55:04.321233 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 327, length 64
2015-10-29 10:55:04.333 tcpdump DEBUG 10:55:04.321770 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 327, length 64
2015-10-29 10:55:04.427 tcpdump DEBUG 10:55:04.421783 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 327, length 64
2015-10-29 10:55:04.431 tcpdump DEBUG 10:55:04.422287 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 327, length 64
2015-10-29 10:55:04.830 tcpdump DEBUG 10:55:04.822334 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 328, length 64
2015-10-29 10:55:04.836 tcpdump DEBUG 10:55:04.823153 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 328, length 64
2015-10-29 10:55:04.931 tcpdump DEBUG 10:55:04.925724 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 328, length 64
2015-10-29 10:55:04.935 tcpdump DEBUG 10:55:04.926191 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 328, length 64
2015-10-29 10:55:05.328 tcpdump DEBUG 10:55:05.322900 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 329, length 64
2015-10-29 10:55:05.333 tcpdump DEBUG 10:55:05.323350 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 329, length 64
2015-10-29 10:55:05.430 tcpdump DEBUG 10:55:05.426177 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 329, length 64
2015-10-29 10:55:05.434 tcpdump DEBUG 10:55:05.426622 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 329, length 64
2015-10-29 10:55:05.829 tcpdump DEBUG 10:55:05.824394 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 330, length 64
2015-10-29 10:55:05.833 tcpdump DEBUG 10:55:05.824879 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 330, length 64
2015-10-29 10:55:05.932 tcpdump DEBUG 10:55:05.927301 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 330, length 64
2015-10-29 10:55:05.936 tcpdump DEBUG 10:55:05.927739 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 330, length 64
2015-10-29 10:55:06.332 tcpdump DEBUG 10:55:06.325228 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 331, length 64
2015-10-29 10:55:06.338 tcpdump DEBUG 10:55:06.325762 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 331, length 64
2015-10-29 10:55:06.434 tcpdump DEBUG 10:55:06.429185 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 331, length 64
2015-10-29 10:55:06.439 tcpdump DEBUG 10:55:06.429677 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 331, length 64
2015-10-29 10:55:06.832 tcpdump DEBUG 10:55:06.826202 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 332, length 64
2015-10-29 10:55:06.837 tcpdump DEBUG 10:55:06.826630 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 332, length 64
2015-10-29 10:55:06.938 tcpdump DEBUG 10:55:06.933182 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 332, length 64
2015-10-29 10:55:06.944 tcpdump DEBUG 10:55:06.933661 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 332, length 64
2015-10-29 10:55:07.332 tcpdump DEBUG 10:55:07.327407 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 333, length 64
2015-10-29 10:55:07.337 tcpdump DEBUG 10:55:07.327879 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 333, length 64
2015-10-29 10:55:07.444 tcpdump DEBUG 10:55:07.439185 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 333, length 64
2015-10-29 10:55:07.449 tcpdump DEBUG 10:55:07.439638 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 333, length 64
2015-10-29 10:55:07.834 tcpdump DEBUG 10:55:07.828909 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 334, length 64
2015-10-29 10:55:07.839 tcpdump DEBUG 10:55:07.829355 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 334, length 64
2015-10-29 10:55:07.948 tcpdump DEBUG 10:55:07.942490 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 334, length 64
2015-10-29 10:55:07.952 tcpdump DEBUG 10:55:07.942957 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 334, length 64
2015-10-29 10:55:08.340 tcpdump DEBUG 10:55:08.330180 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 335, length 64
2015-10-29 10:55:08.345 tcpdump DEBUG 10:55:08.330648 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 335, length 64
2015-10-29 10:55:08.448 tcpdump DEBUG 10:55:08.443149 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 335, length 64
2015-10-29 10:55:08.452 tcpdump DEBUG 10:55:08.443616 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 335, length 64
2015-10-29 10:55:08.835 tcpdump DEBUG 10:55:08.830846 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 336, length 64
2015-10-29 10:55:08.840 tcpdump DEBUG 10:55:08.831291 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 336, length 64
2015-10-29 10:55:08.949 tcpdump DEBUG 10:55:08.944172 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 336, length 64
2015-10-29 10:55:08.953 tcpdump DEBUG 10:55:08.944860 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 336, length 64
2015-10-29 10:55:09.338 tcpdump DEBUG 10:55:09.331952 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 337, length 64
2015-10-29 10:55:09.342 tcpdump DEBUG 10:55:09.332401 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 337, length 64
2015-10-29 10:55:09.449 tcpdump DEBUG 10:55:09.444850 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 337, length 64
2015-10-29 10:55:09.453 tcpdump DEBUG 10:55:09.445251 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 337, length 64
2015-10-29 10:55:09.839 tcpdump DEBUG 10:55:09.833187 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 338, length 64
2015-10-29 10:55:09.843 tcpdump DEBUG 10:55:09.833633 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 338, length 64
2015-10-29 10:55:09.952 tcpdump DEBUG 10:55:09.947242 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 338, length 64
2015-10-29 10:55:09.959 tcpdump DEBUG 10:55:09.947799 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 338, length 64
2015-10-29 10:55:10.339 tcpdump DEBUG 10:55:10.334435 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 339, length 64
2015-10-29 10:55:10.345 tcpdump DEBUG 10:55:10.335085 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 339, length 64
2015-10-29 10:55:10.453 tcpdump DEBUG 10:55:10.448255 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 339, length 64
2015-10-29 10:55:10.457 tcpdump DEBUG 10:55:10.448800 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 339, length 64
2015-10-29 10:55:10.841 tcpdump DEBUG 10:55:10.835317 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 340, length 64
2015-10-29 10:55:10.846 tcpdump DEBUG 10:55:10.835783 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 340, length 64
2015-10-29 10:55:10.954 tcpdump DEBUG 10:55:10.949216 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 340, length 64
2015-10-29 10:55:10.958 tcpdump DEBUG 10:55:10.949667 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 340, length 64
2015-10-29 10:55:11.341 tcpdump DEBUG 10:55:11.336555 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 341, length 64
2015-10-29 10:55:11.346 tcpdump DEBUG 10:55:11.337018 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 341, length 64
2015-10-29 10:55:11.455 tcpdump DEBUG 10:55:11.450009 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 341, length 64
2015-10-29 10:55:11.459 tcpdump DEBUG 10:55:11.450415 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 341, length 64
2015-10-29 10:55:11.844 tcpdump DEBUG 10:55:11.837955 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 342, length 64
2015-10-29 10:55:11.848 tcpdump DEBUG 10:55:11.838395 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 342, length 64
2015-10-29 10:55:11.955 tcpdump DEBUG 10:55:11.950511 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 342, length 64
2015-10-29 10:55:11.958 tcpdump DEBUG 10:55:11.950990 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 342, length 64
2015-10-29 10:55:12.345 tcpdump DEBUG 10:55:12.339169 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 343, length 64
2015-10-29 10:55:12.351 tcpdump DEBUG 10:55:12.339661 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 343, length 64
2015-10-29 10:55:12.457 tcpdump DEBUG 10:55:12.451306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 343, length 64
2015-10-29 10:55:12.461 tcpdump DEBUG 10:55:12.451701 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 343, length 64
2015-10-29 10:55:12.846 tcpdump DEBUG 10:55:12.840554 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 344, length 64
2015-10-29 10:55:12.850 tcpdump DEBUG 10:55:12.840976 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 344, length 64
2015-10-29 10:55:12.957 tcpdump DEBUG 10:55:12.951972 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 344, length 64
2015-10-29 10:55:12.961 tcpdump DEBUG 10:55:12.952391 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 344, length 64
2015-10-29 10:55:13.347 tcpdump DEBUG 10:55:13.341614 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 345, length 64
2015-10-29 10:55:13.352 tcpdump DEBUG 10:55:13.342078 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 345, length 64
2015-10-29 10:55:13.459 tcpdump DEBUG 10:55:13.453391 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 345, length 64
2015-10-29 10:55:13.463 tcpdump DEBUG 10:55:13.453822 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 345, length 64
2015-10-29 10:55:13.850 tcpdump DEBUG 10:55:13.842904 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 346, length 64
2015-10-29 10:55:13.854 tcpdump DEBUG 10:55:13.843288 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 346, length 64
2015-10-29 10:55:13.958 tcpdump DEBUG 10:55:13.954023 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 346, length 64
2015-10-29 10:55:13.962 tcpdump DEBUG 10:55:13.954442 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 346, length 64
2015-10-29 10:55:14.350 tcpdump DEBUG 10:55:14.344151 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 347, length 64
2015-10-29 10:55:14.356 tcpdump DEBUG 10:55:14.344610 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 347, length 64
2015-10-29 10:55:14.460 tcpdump DEBUG 10:55:14.454796 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 347, length 64
2015-10-29 10:55:14.464 tcpdump DEBUG 10:55:14.455266 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 347, length 64
2015-10-29 10:55:14.851 tcpdump DEBUG 10:55:14.845077 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 348, length 64
2015-10-29 10:55:14.855 tcpdump DEBUG 10:55:14.845494 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 348, length 64
2015-10-29 10:55:14.960 tcpdump DEBUG 10:55:14.955615 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 348, length 64
2015-10-29 10:55:14.964 tcpdump DEBUG 10:55:14.956006 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 348, length 64
2015-10-29 10:55:15.352 tcpdump DEBUG 10:55:15.346262 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 349, length 64
2015-10-29 10:55:15.358 tcpdump DEBUG 10:55:15.346804 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 349, length 64
2015-10-29 10:55:15.461 tcpdump DEBUG 10:55:15.456270 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 349, length 64
2015-10-29 10:55:15.465 tcpdump DEBUG 10:55:15.456741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 349, length 64
2015-10-29 10:55:15.852 tcpdump DEBUG 10:55:15.847689 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 350, length 64
2015-10-29 10:55:15.857 tcpdump DEBUG 10:55:15.848089 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 350, length 64
2015-10-29 10:55:15.961 tcpdump DEBUG 10:55:15.957078 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 350, length 64
2015-10-29 10:55:15.966 tcpdump DEBUG 10:55:15.957490 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 350, length 64
2015-10-29 10:55:16.355 tcpdump DEBUG 10:55:16.348908 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 351, length 64
2015-10-29 10:55:16.361 tcpdump DEBUG 10:55:16.349338 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 351, length 64
2015-10-29 10:55:16.463 tcpdump DEBUG 10:55:16.458575 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 351, length 64
2015-10-29 10:55:16.467 tcpdump DEBUG 10:55:16.459049 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 351, length 64
2015-10-29 10:55:16.857 tcpdump DEBUG 10:55:16.851208 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 352, length 64
2015-10-29 10:55:16.862 tcpdump DEBUG 10:55:16.851666 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 352, length 64
2015-10-29 10:55:16.963 tcpdump DEBUG 10:55:16.958368 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 352, length 64
2015-10-29 10:55:16.968 tcpdump DEBUG 10:55:16.958827 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 352, length 64
2015-10-29 10:55:17.360 tcpdump DEBUG 10:55:17.353923 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 353, length 64
2015-10-29 10:55:17.374 tcpdump DEBUG 10:55:17.354465 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 353, length 64
2015-10-29 10:55:17.464 tcpdump DEBUG 10:55:17.459227 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 353, length 64
2015-10-29 10:55:17.468 tcpdump DEBUG 10:55:17.459634 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 353, length 64
2015-10-29 10:55:17.862 tcpdump DEBUG 10:55:17.855044 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 354, length 64
2015-10-29 10:55:17.866 tcpdump DEBUG 10:55:17.855474 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 354, length 64
2015-10-29 10:55:17.965 tcpdump DEBUG 10:55:17.959468 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 354, length 64
2015-10-29 10:55:17.969 tcpdump DEBUG 10:55:17.959931 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 354, length 64
2015-10-29 10:55:18.371 tcpdump DEBUG 10:55:18.357393 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 355, length 64
2015-10-29 10:55:18.383 tcpdump DEBUG 10:55:18.358137 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 355, length 64
2015-10-29 10:55:18.473 tcpdump DEBUG 10:55:18.461230 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 355, length 64
2015-10-29 10:55:18.478 tcpdump DEBUG 10:55:18.461939 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 355, length 64
2015-10-29 10:55:18.864 tcpdump DEBUG 10:55:18.857613 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 356, length 64
2015-10-29 10:55:18.868 tcpdump DEBUG 10:55:18.858062 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 356, length 64
2015-10-29 10:55:18.966 tcpdump DEBUG 10:55:18.961276 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 356, length 64
2015-10-29 10:55:18.970 tcpdump DEBUG 10:55:18.961741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 356, length 64
2015-10-29 10:55:19.364 tcpdump DEBUG 10:55:19.358597 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 357, length 64
2015-10-29 10:55:19.368 tcpdump DEBUG 10:55:19.359096 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 357, length 64
2015-10-29 10:55:19.468 tcpdump DEBUG 10:55:19.462231 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 357, length 64
2015-10-29 10:55:19.473 tcpdump DEBUG 10:55:19.462668 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 357, length 64
2015-10-29 10:55:19.865 tcpdump DEBUG 10:55:19.859207 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 358, length 64
2015-10-29 10:55:19.869 tcpdump DEBUG 10:55:19.859687 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 358, length 64
2015-10-29 10:55:19.961 tcpdump DEBUG 10:55:19.956349 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:55:19.966 tcpdump DEBUG 10:55:19.958098 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:55:19.970 tcpdump DEBUG 10:55:19.964255 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 358, length 64
2015-10-29 10:55:19.974 tcpdump DEBUG 10:55:19.965800 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 358, length 64
2015-10-29 10:55:20.366 tcpdump DEBUG 10:55:20.360170 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 359, length 64
2015-10-29 10:55:20.379 tcpdump DEBUG 10:55:20.361643 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 359, length 64
2015-10-29 10:55:20.470 tcpdump DEBUG 10:55:20.464131 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 359, length 64
2015-10-29 10:55:20.475 tcpdump DEBUG 10:55:20.465170 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 359, length 64
2015-10-29 10:55:20.905 tcpdump DEBUG 10:55:20.899849 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 360, length 64
2015-10-29 10:55:20.909 tcpdump DEBUG 10:55:20.900445 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 360, length 64
2015-10-29 10:55:20.970 tcpdump DEBUG 10:55:20.965185 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 360, length 64
2015-10-29 10:55:20.975 tcpdump DEBUG 10:55:20.965654 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 360, length 64
2015-10-29 10:55:21.368 tcpdump DEBUG 10:55:21.362909 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 361, length 64
2015-10-29 10:55:21.373 tcpdump DEBUG 10:55:21.363390 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 361, length 64
2015-10-29 10:55:21.471 tcpdump DEBUG 10:55:21.465955 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 361, length 64
2015-10-29 10:55:21.476 tcpdump DEBUG 10:55:21.466432 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 361, length 64
2015-10-29 10:55:21.879 tcpdump DEBUG 10:55:21.865024 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 362, length 64
2015-10-29 10:55:21.884 tcpdump DEBUG 10:55:21.865463 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 362, length 64
2015-10-29 10:55:22.013 tcpdump DEBUG 10:55:22.007292 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 362, length 64
2015-10-29 10:55:22.017 tcpdump DEBUG 10:55:22.010097 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 362, length 64
2015-10-29 10:55:22.372 tcpdump DEBUG 10:55:22.365180 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 363, length 64
2015-10-29 10:55:22.376 tcpdump DEBUG 10:55:22.368160 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 363, length 64
2015-10-29 10:55:22.473 tcpdump DEBUG 10:55:22.467157 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 363, length 64
2015-10-29 10:55:22.478 tcpdump DEBUG 10:55:22.467811 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 363, length 64

View File

@ -0,0 +1,781 @@
2015-10-29 10:52:28.344 tcpdump DEBUG Starting tcpdump retrier on interface 'tap2e6d0f35-cb'
2015-10-29 10:52:28.411 tcpdump DEBUG listening on tap2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:52:28.465 tcpdump DEBUG 10:52:28.461457 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 16, length 64
2015-10-29 10:52:28.470 tcpdump DEBUG 10:52:28.461836 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 16, length 64
2015-10-29 10:52:28.750 tcpdump DEBUG 10:52:28.745268 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 17, length 64
2015-10-29 10:52:28.756 tcpdump DEBUG 10:52:28.746111 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 17, length 64
2015-10-29 10:52:28.967 tcpdump DEBUG 10:52:28.962227 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 17, length 64
2015-10-29 10:52:28.971 tcpdump DEBUG 10:52:28.962618 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 17, length 64
2015-10-29 10:52:29.253 tcpdump DEBUG 10:52:29.246597 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 18, length 64
2015-10-29 10:52:29.257 tcpdump DEBUG 10:52:29.246970 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 18, length 64
2015-10-29 10:52:29.467 tcpdump DEBUG 10:52:29.462826 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 18, length 64
2015-10-29 10:52:29.471 tcpdump DEBUG 10:52:29.463118 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 18, length 64
2015-10-29 10:52:29.756 tcpdump DEBUG 10:52:29.747295 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 19, length 64
2015-10-29 10:52:29.764 tcpdump DEBUG 10:52:29.747623 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 19, length 64
2015-10-29 10:52:29.968 tcpdump DEBUG 10:52:29.963617 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 19, length 64
2015-10-29 10:52:29.972 tcpdump DEBUG 10:52:29.963984 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 19, length 64
2015-10-29 10:52:30.254 tcpdump DEBUG 10:52:30.248375 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 20, length 64
2015-10-29 10:52:30.258 tcpdump DEBUG 10:52:30.248677 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 20, length 64
2015-10-29 10:52:30.468 tcpdump DEBUG 10:52:30.464449 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 20, length 64
2015-10-29 10:52:30.473 tcpdump DEBUG 10:52:30.464817 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 20, length 64
2015-10-29 10:52:30.762 tcpdump DEBUG 10:52:30.749275 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 21, length 64
2015-10-29 10:52:30.769 tcpdump DEBUG 10:52:30.750027 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 21, length 64
2015-10-29 10:52:30.774 tcpdump DEBUG 10:52:30.753621 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:52:30.779 tcpdump DEBUG 10:52:30.754205 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:52:30.970 tcpdump DEBUG 10:52:30.965391 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 21, length 64
2015-10-29 10:52:30.974 tcpdump DEBUG 10:52:30.967752 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 21, length 64
2015-10-29 10:52:31.257 tcpdump DEBUG 10:52:31.251156 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 22, length 64
2015-10-29 10:52:31.261 tcpdump DEBUG 10:52:31.251471 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 22, length 64
2015-10-29 10:52:31.470 tcpdump DEBUG 10:52:31.466376 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 22, length 64
2015-10-29 10:52:31.474 tcpdump DEBUG 10:52:31.466684 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 22, length 64
2015-10-29 10:52:31.760 tcpdump DEBUG 10:52:31.752276 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 23, length 64
2015-10-29 10:52:31.764 tcpdump DEBUG 10:52:31.752606 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 23, length 64
2015-10-29 10:52:31.971 tcpdump DEBUG 10:52:31.966948 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 23, length 64
2015-10-29 10:52:31.975 tcpdump DEBUG 10:52:31.967250 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 23, length 64
2015-10-29 10:52:32.263 tcpdump DEBUG 10:52:32.253301 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 24, length 64
2015-10-29 10:52:32.268 tcpdump DEBUG 10:52:32.254010 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 24, length 64
2015-10-29 10:52:32.472 tcpdump DEBUG 10:52:32.467846 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 24, length 64
2015-10-29 10:52:32.479 tcpdump DEBUG 10:52:32.468157 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 24, length 64
2015-10-29 10:52:32.761 tcpdump DEBUG 10:52:32.753959 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 25, length 64
2015-10-29 10:52:32.767 tcpdump DEBUG 10:52:32.755076 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 25, length 64
2015-10-29 10:52:32.974 tcpdump DEBUG 10:52:32.968550 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 25, length 64
2015-10-29 10:52:32.978 tcpdump DEBUG 10:52:32.968939 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 25, length 64
2015-10-29 10:52:33.261 tcpdump DEBUG 10:52:33.254848 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 26, length 64
2015-10-29 10:52:33.265 tcpdump DEBUG 10:52:33.255117 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 26, length 64
2015-10-29 10:52:33.474 tcpdump DEBUG 10:52:33.469428 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 26, length 64
2015-10-29 10:52:33.479 tcpdump DEBUG 10:52:33.469817 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 26, length 64
2015-10-29 10:52:33.762 tcpdump DEBUG 10:52:33.756080 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 27, length 64
2015-10-29 10:52:33.766 tcpdump DEBUG 10:52:33.756386 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 27, length 64
2015-10-29 10:52:33.975 tcpdump DEBUG 10:52:33.970306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 27, length 64
2015-10-29 10:52:33.978 tcpdump DEBUG 10:52:33.970573 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 27, length 64
2015-10-29 10:52:34.263 tcpdump DEBUG 10:52:34.257371 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 28, length 64
2015-10-29 10:52:34.267 tcpdump DEBUG 10:52:34.257647 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 28, length 64
2015-10-29 10:52:34.476 tcpdump DEBUG 10:52:34.471002 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 28, length 64
2015-10-29 10:52:34.480 tcpdump DEBUG 10:52:34.471232 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 28, length 64
2015-10-29 10:52:34.768 tcpdump DEBUG 10:52:34.758301 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 29, length 64
2015-10-29 10:52:34.773 tcpdump DEBUG 10:52:34.758601 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 29, length 64
2015-10-29 10:52:34.978 tcpdump DEBUG 10:52:34.972521 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 29, length 64
2015-10-29 10:52:34.981 tcpdump DEBUG 10:52:34.972853 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 29, length 64
2015-10-29 10:52:35.267 tcpdump DEBUG 10:52:35.260172 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 30, length 64
2015-10-29 10:52:35.271 tcpdump DEBUG 10:52:35.260445 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 30, length 64
2015-10-29 10:52:35.478 tcpdump DEBUG 10:52:35.473362 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 30, length 64
2015-10-29 10:52:35.482 tcpdump DEBUG 10:52:35.473633 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 30, length 64
2015-10-29 10:52:35.769 tcpdump DEBUG 10:52:35.762089 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 31, length 64
2015-10-29 10:52:35.773 tcpdump DEBUG 10:52:35.762360 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 31, length 64
2015-10-29 10:52:35.978 tcpdump DEBUG 10:52:35.974038 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 31, length 64
2015-10-29 10:52:35.982 tcpdump DEBUG 10:52:35.974312 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 31, length 64
2015-10-29 10:52:36.268 tcpdump DEBUG 10:52:36.263228 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 32, length 64
2015-10-29 10:52:36.272 tcpdump DEBUG 10:52:36.263497 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 32, length 64
2015-10-29 10:52:36.479 tcpdump DEBUG 10:52:36.474509 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 32, length 64
2015-10-29 10:52:36.484 tcpdump DEBUG 10:52:36.474826 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 32, length 64
2015-10-29 10:52:36.770 tcpdump DEBUG 10:52:36.764282 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 33, length 64
2015-10-29 10:52:36.775 tcpdump DEBUG 10:52:36.764647 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 33, length 64
2015-10-29 10:52:36.980 tcpdump DEBUG 10:52:36.975351 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 33, length 64
2015-10-29 10:52:36.984 tcpdump DEBUG 10:52:36.975634 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 33, length 64
2015-10-29 10:52:37.271 tcpdump DEBUG 10:52:37.264896 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 34, length 64
2015-10-29 10:52:37.275 tcpdump DEBUG 10:52:37.265173 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 34, length 64
2015-10-29 10:52:37.481 tcpdump DEBUG 10:52:37.476123 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 34, length 64
2015-10-29 10:52:37.485 tcpdump DEBUG 10:52:37.476395 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 34, length 64
2015-10-29 10:52:37.771 tcpdump DEBUG 10:52:37.766069 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 35, length 64
2015-10-29 10:52:37.775 tcpdump DEBUG 10:52:37.766410 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 35, length 64
2015-10-29 10:52:37.982 tcpdump DEBUG 10:52:37.976745 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 35, length 64
2015-10-29 10:52:37.986 tcpdump DEBUG 10:52:37.977036 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 35, length 64
2015-10-29 10:52:38.274 tcpdump DEBUG 10:52:38.267485 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 36, length 64
2015-10-29 10:52:38.279 tcpdump DEBUG 10:52:38.267937 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 36, length 64
2015-10-29 10:52:38.482 tcpdump DEBUG 10:52:38.477459 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 36, length 64
2015-10-29 10:52:38.486 tcpdump DEBUG 10:52:38.477788 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 36, length 64
2015-10-29 10:52:38.774 tcpdump DEBUG 10:52:38.768394 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 37, length 64
2015-10-29 10:52:38.778 tcpdump DEBUG 10:52:38.768685 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 37, length 64
2015-10-29 10:52:38.983 tcpdump DEBUG 10:52:38.978312 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 37, length 64
2015-10-29 10:52:38.987 tcpdump DEBUG 10:52:38.978602 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 37, length 64
2015-10-29 10:52:39.276 tcpdump DEBUG 10:52:39.269306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 38, length 64
2015-10-29 10:52:39.281 tcpdump DEBUG 10:52:39.269745 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 38, length 64
2015-10-29 10:52:39.484 tcpdump DEBUG 10:52:39.479357 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 38, length 64
2015-10-29 10:52:39.488 tcpdump DEBUG 10:52:39.479622 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 38, length 64
2015-10-29 10:52:39.776 tcpdump DEBUG 10:52:39.771264 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 39, length 64
2015-10-29 10:52:39.781 tcpdump DEBUG 10:52:39.771557 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 39, length 64
2015-10-29 10:52:39.986 tcpdump DEBUG 10:52:39.980821 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 39, length 64
2015-10-29 10:52:39.990 tcpdump DEBUG 10:52:39.981092 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 39, length 64
2015-10-29 10:52:40.277 tcpdump DEBUG 10:52:40.271438 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 40, length 64
2015-10-29 10:52:40.281 tcpdump DEBUG 10:52:40.271741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 40, length 64
2015-10-29 10:52:40.486 tcpdump DEBUG 10:52:40.481430 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 40, length 64
2015-10-29 10:52:40.490 tcpdump DEBUG 10:52:40.481731 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 40, length 64
2015-10-29 10:52:40.779 tcpdump DEBUG 10:52:40.772604 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 41, length 64
2015-10-29 10:52:40.785 tcpdump DEBUG 10:52:40.772931 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 41, length 64
2015-10-29 10:52:40.987 tcpdump DEBUG 10:52:40.982487 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 41, length 64
2015-10-29 10:52:40.991 tcpdump DEBUG 10:52:40.982824 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 41, length 64
2015-10-29 10:52:41.280 tcpdump DEBUG 10:52:41.274011 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 42, length 64
2015-10-29 10:52:41.285 tcpdump DEBUG 10:52:41.274283 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 42, length 64
2015-10-29 10:52:41.488 tcpdump DEBUG 10:52:41.483008 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 42, length 64
2015-10-29 10:52:41.492 tcpdump DEBUG 10:52:41.483278 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 42, length 64
2015-10-29 10:52:41.781 tcpdump DEBUG 10:52:41.775201 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 43, length 64
2015-10-29 10:52:41.785 tcpdump DEBUG 10:52:41.775491 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 43, length 64
2015-10-29 10:52:41.988 tcpdump DEBUG 10:52:41.983625 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 43, length 64
2015-10-29 10:52:41.992 tcpdump DEBUG 10:52:41.983902 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 43, length 64
2015-10-29 10:52:42.283 tcpdump DEBUG 10:52:42.277632 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 44, length 64
2015-10-29 10:52:42.288 tcpdump DEBUG 10:52:42.277865 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 44, length 64
2015-10-29 10:52:42.489 tcpdump DEBUG 10:52:42.484249 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 44, length 64
2015-10-29 10:52:42.493 tcpdump DEBUG 10:52:42.484524 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 44, length 64
2015-10-29 10:52:42.785 tcpdump DEBUG 10:52:42.778697 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 45, length 64
2015-10-29 10:52:42.790 tcpdump DEBUG 10:52:42.779031 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 45, length 64
2015-10-29 10:52:42.990 tcpdump DEBUG 10:52:42.984866 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 45, length 64
2015-10-29 10:52:42.994 tcpdump DEBUG 10:52:42.985164 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 45, length 64
2015-10-29 10:52:43.285 tcpdump DEBUG 10:52:43.279945 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 46, length 64
2015-10-29 10:52:43.290 tcpdump DEBUG 10:52:43.280190 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 46, length 64
2015-10-29 10:52:43.490 tcpdump DEBUG 10:52:43.485762 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 46, length 64
2015-10-29 10:52:43.493 tcpdump DEBUG 10:52:43.486035 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 46, length 64
2015-10-29 10:52:43.786 tcpdump DEBUG 10:52:43.781224 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 47, length 64
2015-10-29 10:52:43.791 tcpdump DEBUG 10:52:43.781497 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 47, length 64
2015-10-29 10:52:43.991 tcpdump DEBUG 10:52:43.986478 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 47, length 64
2015-10-29 10:52:43.995 tcpdump DEBUG 10:52:43.986781 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 47, length 64
2015-10-29 10:52:44.288 tcpdump DEBUG 10:52:44.282172 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 48, length 64
2015-10-29 10:52:44.292 tcpdump DEBUG 10:52:44.282441 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 48, length 64
2015-10-29 10:52:44.493 tcpdump DEBUG 10:52:44.487291 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 48, length 64
2015-10-29 10:52:44.496 tcpdump DEBUG 10:52:44.487534 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 48, length 64
2015-10-29 10:52:44.793 tcpdump DEBUG 10:52:44.783356 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 49, length 64
2015-10-29 10:52:44.806 tcpdump DEBUG 10:52:44.783830 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 49, length 64
2015-10-29 10:52:44.993 tcpdump DEBUG 10:52:44.988391 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 49, length 64
2015-10-29 10:52:44.997 tcpdump DEBUG 10:52:44.988751 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 49, length 64
2015-10-29 10:52:45.290 tcpdump DEBUG 10:52:45.284271 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 50, length 64
2015-10-29 10:52:45.294 tcpdump DEBUG 10:52:45.284515 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 50, length 64
2015-10-29 10:52:45.494 tcpdump DEBUG 10:52:45.489364 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 50, length 64
2015-10-29 10:52:45.498 tcpdump DEBUG 10:52:45.489638 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 50, length 64
2015-10-29 10:52:45.791 tcpdump DEBUG 10:52:45.785415 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 51, length 64
2015-10-29 10:52:45.796 tcpdump DEBUG 10:52:45.785733 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 51, length 64
2015-10-29 10:52:45.996 tcpdump DEBUG 10:52:45.990225 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 51, length 64
2015-10-29 10:52:46.000 tcpdump DEBUG 10:52:45.990503 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 51, length 64
2015-10-29 10:52:46.292 tcpdump DEBUG 10:52:46.286573 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 52, length 64
2015-10-29 10:52:46.296 tcpdump DEBUG 10:52:46.286890 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 52, length 64
2015-10-29 10:52:46.498 tcpdump DEBUG 10:52:46.491359 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 52, length 64
2015-10-29 10:52:46.502 tcpdump DEBUG 10:52:46.491641 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 52, length 64
2015-10-29 10:52:46.796 tcpdump DEBUG 10:52:46.787781 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 53, length 64
2015-10-29 10:52:46.801 tcpdump DEBUG 10:52:46.788071 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 53, length 64
2015-10-29 10:52:46.997 tcpdump DEBUG 10:52:46.992287 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 53, length 64
2015-10-29 10:52:47.001 tcpdump DEBUG 10:52:46.992577 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 53, length 64
2015-10-29 10:52:47.295 tcpdump DEBUG 10:52:47.288876 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 54, length 64
2015-10-29 10:52:47.299 tcpdump DEBUG 10:52:47.289132 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 54, length 64
2015-10-29 10:52:47.498 tcpdump DEBUG 10:52:47.493264 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 54, length 64
2015-10-29 10:52:47.502 tcpdump DEBUG 10:52:47.493541 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 54, length 64
2015-10-29 10:52:47.796 tcpdump DEBUG 10:52:47.790017 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 55, length 64
2015-10-29 10:52:47.800 tcpdump DEBUG 10:52:47.790313 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 55, length 64
2015-10-29 10:52:47.999 tcpdump DEBUG 10:52:47.994335 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 55, length 64
2015-10-29 10:52:48.003 tcpdump DEBUG 10:52:47.994620 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 55, length 64
2015-10-29 10:52:48.297 tcpdump DEBUG 10:52:48.291132 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 56, length 64
2015-10-29 10:52:48.301 tcpdump DEBUG 10:52:48.291362 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 56, length 64
2015-10-29 10:52:48.504 tcpdump DEBUG 10:52:48.499414 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 56, length 64
2015-10-29 10:52:48.508 tcpdump DEBUG 10:52:48.499738 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 56, length 64
2015-10-29 10:52:48.798 tcpdump DEBUG 10:52:48.792323 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 57, length 64
2015-10-29 10:52:48.804 tcpdump DEBUG 10:52:48.792681 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 57, length 64
2015-10-29 10:52:49.005 tcpdump DEBUG 10:52:49.000311 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 57, length 64
2015-10-29 10:52:49.009 tcpdump DEBUG 10:52:49.000591 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 57, length 64
2015-10-29 10:52:49.298 tcpdump DEBUG 10:52:49.293520 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 58, length 64
2015-10-29 10:52:49.302 tcpdump DEBUG 10:52:49.293802 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 58, length 64
2015-10-29 10:52:49.506 tcpdump DEBUG 10:52:49.502248 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 58, length 64
2015-10-29 10:52:49.510 tcpdump DEBUG 10:52:49.502476 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 58, length 64
2015-10-29 10:52:49.800 tcpdump DEBUG 10:52:49.794732 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 59, length 64
2015-10-29 10:52:49.804 tcpdump DEBUG 10:52:49.795010 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 59, length 64
2015-10-29 10:52:50.007 tcpdump DEBUG 10:52:50.003133 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 59, length 64
2015-10-29 10:52:50.012 tcpdump DEBUG 10:52:50.003405 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 59, length 64
2015-10-29 10:52:50.301 tcpdump DEBUG 10:52:50.295848 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 60, length 64
2015-10-29 10:52:50.306 tcpdump DEBUG 10:52:50.296119 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 60, length 64
2015-10-29 10:52:50.509 tcpdump DEBUG 10:52:50.503890 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 60, length 64
2015-10-29 10:52:50.513 tcpdump DEBUG 10:52:50.504165 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 60, length 64
2015-10-29 10:52:50.803 tcpdump DEBUG 10:52:50.797024 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 61, length 64
2015-10-29 10:52:50.807 tcpdump DEBUG 10:52:50.797384 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 61, length 64
2015-10-29 10:52:51.009 tcpdump DEBUG 10:52:51.004684 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 61, length 64
2015-10-29 10:52:51.013 tcpdump DEBUG 10:52:51.005075 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 61, length 64
2015-10-29 10:52:51.303 tcpdump DEBUG 10:52:51.298092 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 62, length 64
2015-10-29 10:52:51.307 tcpdump DEBUG 10:52:51.298441 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 62, length 64
2015-10-29 10:52:51.510 tcpdump DEBUG 10:52:51.505599 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 62, length 64
2015-10-29 10:52:51.513 tcpdump DEBUG 10:52:51.506080 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 62, length 64
2015-10-29 10:52:51.804 tcpdump DEBUG 10:52:51.799105 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 63, length 64
2015-10-29 10:52:51.808 tcpdump DEBUG 10:52:51.800051 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 63, length 64
2015-10-29 10:52:52.010 tcpdump DEBUG 10:52:52.006627 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 63, length 64
2015-10-29 10:52:52.015 tcpdump DEBUG 10:52:52.006917 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 63, length 64
2015-10-29 10:52:52.305 tcpdump DEBUG 10:52:52.300372 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 64, length 64
2015-10-29 10:52:52.309 tcpdump DEBUG 10:52:52.300642 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 64, length 64
2015-10-29 10:52:52.512 tcpdump DEBUG 10:52:52.507420 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 64, length 64
2015-10-29 10:52:52.516 tcpdump DEBUG 10:52:52.507839 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 64, length 64
2015-10-29 10:52:52.806 tcpdump DEBUG 10:52:52.801333 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 65, length 64
2015-10-29 10:52:52.811 tcpdump DEBUG 10:52:52.801642 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 65, length 64
2015-10-29 10:52:53.014 tcpdump DEBUG 10:52:53.008293 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 65, length 64
2015-10-29 10:52:53.019 tcpdump DEBUG 10:52:53.008679 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 65, length 64
2015-10-29 10:52:53.309 tcpdump DEBUG 10:52:53.303201 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 66, length 64
2015-10-29 10:52:53.313 tcpdump DEBUG 10:52:53.303468 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 66, length 64
2015-10-29 10:52:53.514 tcpdump DEBUG 10:52:53.509167 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 66, length 64
2015-10-29 10:52:53.519 tcpdump DEBUG 10:52:53.509444 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 66, length 64
2015-10-29 10:52:53.811 tcpdump DEBUG 10:52:53.804859 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 67, length 64
2015-10-29 10:52:53.814 tcpdump DEBUG 10:52:53.805137 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 67, length 64
2015-10-29 10:52:54.014 tcpdump DEBUG 10:52:54.009818 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 67, length 64
2015-10-29 10:52:54.018 tcpdump DEBUG 10:52:54.010086 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 67, length 64
2015-10-29 10:52:54.311 tcpdump DEBUG 10:52:54.306203 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 68, length 64
2015-10-29 10:52:54.315 tcpdump DEBUG 10:52:54.306440 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 68, length 64
2015-10-29 10:52:54.516 tcpdump DEBUG 10:52:54.510472 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 68, length 64
2015-10-29 10:52:54.523 tcpdump DEBUG 10:52:54.510979 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 68, length 64
2015-10-29 10:52:54.813 tcpdump DEBUG 10:52:54.807235 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 69, length 64
2015-10-29 10:52:54.819 tcpdump DEBUG 10:52:54.807607 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 69, length 64
2015-10-29 10:52:55.016 tcpdump DEBUG 10:52:55.011382 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 69, length 64
2015-10-29 10:52:55.021 tcpdump DEBUG 10:52:55.011684 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 69, length 64
2015-10-29 10:52:55.313 tcpdump DEBUG 10:52:55.308373 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 70, length 64
2015-10-29 10:52:55.318 tcpdump DEBUG 10:52:55.308622 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 70, length 64
2015-10-29 10:52:55.515 tcpdump DEBUG 10:52:55.510683 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:52:55.519 tcpdump DEBUG 10:52:55.512526 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 70, length 64
2015-10-29 10:52:55.523 tcpdump DEBUG 10:52:55.512679 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:52:55.528 tcpdump DEBUG 10:52:55.514672 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 70, length 64
2015-10-29 10:52:55.814 tcpdump DEBUG 10:52:55.809656 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 71, length 64
2015-10-29 10:52:55.819 tcpdump DEBUG 10:52:55.811969 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 71, length 64
2015-10-29 10:52:56.022 tcpdump DEBUG 10:52:56.017239 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 71, length 64
2015-10-29 10:52:56.026 tcpdump DEBUG 10:52:56.018034 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 71, length 64
2015-10-29 10:52:56.316 tcpdump DEBUG 10:52:56.311300 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 72, length 64
2015-10-29 10:52:56.320 tcpdump DEBUG 10:52:56.311572 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 72, length 64
2015-10-29 10:52:56.523 tcpdump DEBUG 10:52:56.518170 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 72, length 64
2015-10-29 10:52:56.527 tcpdump DEBUG 10:52:56.518445 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 72, length 64
2015-10-29 10:52:56.819 tcpdump DEBUG 10:52:56.813331 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 73, length 64
2015-10-29 10:52:56.824 tcpdump DEBUG 10:52:56.813623 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 73, length 64
2015-10-29 10:52:57.026 tcpdump DEBUG 10:52:57.020810 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 73, length 64
2015-10-29 10:52:57.031 tcpdump DEBUG 10:52:57.021095 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 73, length 64
2015-10-29 10:52:57.320 tcpdump DEBUG 10:52:57.314745 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 74, length 64
2015-10-29 10:52:57.325 tcpdump DEBUG 10:52:57.315026 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 74, length 64
2015-10-29 10:52:57.526 tcpdump DEBUG 10:52:57.521611 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 74, length 64
2015-10-29 10:52:57.530 tcpdump DEBUG 10:52:57.521920 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 74, length 64
2015-10-29 10:52:57.822 tcpdump DEBUG 10:52:57.816190 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 75, length 64
2015-10-29 10:52:57.827 tcpdump DEBUG 10:52:57.816462 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 75, length 64
2015-10-29 10:52:58.031 tcpdump DEBUG 10:52:58.026108 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 75, length 64
2015-10-29 10:52:58.035 tcpdump DEBUG 10:52:58.026382 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 75, length 64
2015-10-29 10:52:58.324 tcpdump DEBUG 10:52:58.318639 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 76, length 64
2015-10-29 10:52:58.329 tcpdump DEBUG 10:52:58.319541 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 76, length 64
2015-10-29 10:52:58.532 tcpdump DEBUG 10:52:58.527254 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 76, length 64
2015-10-29 10:52:58.536 tcpdump DEBUG 10:52:58.527528 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 76, length 64
2015-10-29 10:52:58.825 tcpdump DEBUG 10:52:58.820002 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 77, length 64
2015-10-29 10:52:58.831 tcpdump DEBUG 10:52:58.820362 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 77, length 64
2015-10-29 10:52:59.034 tcpdump DEBUG 10:52:59.029221 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 77, length 64
2015-10-29 10:52:59.038 tcpdump DEBUG 10:52:59.029592 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 77, length 64
2015-10-29 10:52:59.327 tcpdump DEBUG 10:52:59.321244 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 78, length 64
2015-10-29 10:52:59.331 tcpdump DEBUG 10:52:59.321528 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 78, length 64
2015-10-29 10:52:59.539 tcpdump DEBUG 10:52:59.535097 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 78, length 64
2015-10-29 10:52:59.543 tcpdump DEBUG 10:52:59.535352 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 78, length 64
2015-10-29 10:52:59.829 tcpdump DEBUG 10:52:59.822579 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 79, length 64
2015-10-29 10:52:59.834 tcpdump DEBUG 10:52:59.823016 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 79, length 64
2015-10-29 10:53:00.043 tcpdump DEBUG 10:53:00.037225 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 79, length 64
2015-10-29 10:53:00.046 tcpdump DEBUG 10:53:00.037514 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 79, length 64
2015-10-29 10:53:00.329 tcpdump DEBUG 10:53:00.323853 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 80, length 64
2015-10-29 10:53:00.333 tcpdump DEBUG 10:53:00.324137 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 80, length 64
2015-10-29 10:53:00.542 tcpdump DEBUG 10:53:00.538029 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 80, length 64
2015-10-29 10:53:00.546 tcpdump DEBUG 10:53:00.538301 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 80, length 64
2015-10-29 10:53:00.831 tcpdump DEBUG 10:53:00.825241 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 81, length 64
2015-10-29 10:53:00.837 tcpdump DEBUG 10:53:00.825645 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 81, length 64
2015-10-29 10:53:01.043 tcpdump DEBUG 10:53:01.038877 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 81, length 64
2015-10-29 10:53:01.048 tcpdump DEBUG 10:53:01.039163 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 81, length 64
2015-10-29 10:53:01.332 tcpdump DEBUG 10:53:01.326466 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 82, length 64
2015-10-29 10:53:01.336 tcpdump DEBUG 10:53:01.326783 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 82, length 64
2015-10-29 10:53:01.545 tcpdump DEBUG 10:53:01.540279 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 82, length 64
2015-10-29 10:53:01.548 tcpdump DEBUG 10:53:01.540554 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 82, length 64
2015-10-29 10:53:01.833 tcpdump DEBUG 10:53:01.827832 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 83, length 64
2015-10-29 10:53:01.837 tcpdump DEBUG 10:53:01.828108 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 83, length 64
2015-10-29 10:53:02.046 tcpdump DEBUG 10:53:02.041494 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 83, length 64
2015-10-29 10:53:02.050 tcpdump DEBUG 10:53:02.041807 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 83, length 64
2015-10-29 10:53:02.335 tcpdump DEBUG 10:53:02.329115 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 84, length 64
2015-10-29 10:53:02.339 tcpdump DEBUG 10:53:02.329403 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 84, length 64
2015-10-29 10:53:02.550 tcpdump DEBUG 10:53:02.545583 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 84, length 64
2015-10-29 10:53:02.556 tcpdump DEBUG 10:53:02.546031 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 84, length 64
2015-10-29 10:53:02.836 tcpdump DEBUG 10:53:02.830433 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 85, length 64
2015-10-29 10:53:02.841 tcpdump DEBUG 10:53:02.830851 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 85, length 64
2015-10-29 10:53:03.051 tcpdump DEBUG 10:53:03.046274 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 85, length 64
2015-10-29 10:53:03.056 tcpdump DEBUG 10:53:03.046560 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 85, length 64
2015-10-29 10:53:03.337 tcpdump DEBUG 10:53:03.331428 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 86, length 64
2015-10-29 10:53:03.342 tcpdump DEBUG 10:53:03.331828 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 86, length 64
2015-10-29 10:53:03.551 tcpdump DEBUG 10:53:03.546867 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 86, length 64
2015-10-29 10:53:03.555 tcpdump DEBUG 10:53:03.547136 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 86, length 64
2015-10-29 10:53:03.839 tcpdump DEBUG 10:53:03.832847 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 87, length 64
2015-10-29 10:53:03.843 tcpdump DEBUG 10:53:03.833116 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 87, length 64
2015-10-29 10:53:04.054 tcpdump DEBUG 10:53:04.049245 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 87, length 64
2015-10-29 10:53:04.058 tcpdump DEBUG 10:53:04.049514 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 87, length 64
2015-10-29 10:53:04.339 tcpdump DEBUG 10:53:04.334385 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 88, length 64
2015-10-29 10:53:04.343 tcpdump DEBUG 10:53:04.334662 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 88, length 64
2015-10-29 10:53:04.555 tcpdump DEBUG 10:53:04.550341 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 88, length 64
2015-10-29 10:53:04.559 tcpdump DEBUG 10:53:04.550581 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 88, length 64
2015-10-29 10:53:04.841 tcpdump DEBUG 10:53:04.835733 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 89, length 64
2015-10-29 10:53:04.845 tcpdump DEBUG 10:53:04.836103 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 89, length 64
2015-10-29 10:53:05.059 tcpdump DEBUG 10:53:05.054313 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 89, length 64
2015-10-29 10:53:05.063 tcpdump DEBUG 10:53:05.054612 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 89, length 64
2015-10-29 10:53:05.345 tcpdump DEBUG 10:53:05.337141 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 90, length 64
2015-10-29 10:53:05.353 tcpdump DEBUG 10:53:05.337561 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 90, length 64
2015-10-29 10:53:05.560 tcpdump DEBUG 10:53:05.555241 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 90, length 64
2015-10-29 10:53:05.564 tcpdump DEBUG 10:53:05.555530 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 90, length 64
2015-10-29 10:53:05.843 tcpdump DEBUG 10:53:05.838307 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 91, length 64
2015-10-29 10:53:05.848 tcpdump DEBUG 10:53:05.838584 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 91, length 64
2015-10-29 10:53:06.061 tcpdump DEBUG 10:53:06.056220 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 91, length 64
2015-10-29 10:53:06.066 tcpdump DEBUG 10:53:06.056496 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 91, length 64
2015-10-29 10:53:06.343 tcpdump DEBUG 10:53:06.336825 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:53:06.347 tcpdump DEBUG 10:53:06.337080 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:53:06.353 tcpdump DEBUG 10:53:06.339497 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 92, length 64
2015-10-29 10:53:06.357 tcpdump DEBUG 10:53:06.339939 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 92, length 64
2015-10-29 10:53:06.567 tcpdump DEBUG 10:53:06.562347 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 92, length 64
2015-10-29 10:53:06.571 tcpdump DEBUG 10:53:06.562630 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 92, length 64
2015-10-29 10:53:06.846 tcpdump DEBUG 10:53:06.840557 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 93, length 64
2015-10-29 10:53:06.850 tcpdump DEBUG 10:53:06.840982 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 93, length 64
2015-10-29 10:53:07.069 tcpdump DEBUG 10:53:07.064209 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 93, length 64
2015-10-29 10:53:07.074 tcpdump DEBUG 10:53:07.064507 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 93, length 64
2015-10-29 10:53:07.349 tcpdump DEBUG 10:53:07.342892 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 94, length 64
2015-10-29 10:53:07.353 tcpdump DEBUG 10:53:07.343174 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 94, length 64
2015-10-29 10:53:07.571 tcpdump DEBUG 10:53:07.566272 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 94, length 64
2015-10-29 10:53:07.576 tcpdump DEBUG 10:53:07.566539 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 94, length 64
2015-10-29 10:53:07.849 tcpdump DEBUG 10:53:07.844232 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 95, length 64
2015-10-29 10:53:07.853 tcpdump DEBUG 10:53:07.844511 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 95, length 64
2015-10-29 10:53:08.072 tcpdump DEBUG 10:53:08.066906 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 95, length 64
2015-10-29 10:53:08.076 tcpdump DEBUG 10:53:08.067179 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 95, length 64
2015-10-29 10:53:08.356 tcpdump DEBUG 10:53:08.345570 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 96, length 64
2015-10-29 10:53:08.361 tcpdump DEBUG 10:53:08.349245 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 96, length 64
2015-10-29 10:53:08.576 tcpdump DEBUG 10:53:08.567306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 96, length 64
2015-10-29 10:53:08.581 tcpdump DEBUG 10:53:08.567682 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 96, length 64
2015-10-29 10:53:08.852 tcpdump DEBUG 10:53:08.846307 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 97, length 64
2015-10-29 10:53:08.858 tcpdump DEBUG 10:53:08.850641 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 97, length 64
2015-10-29 10:53:09.079 tcpdump DEBUG 10:53:09.072280 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 97, length 64
2015-10-29 10:53:09.087 tcpdump DEBUG 10:53:09.072632 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 97, length 64
2015-10-29 10:53:09.359 tcpdump DEBUG 10:53:09.348635 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 98, length 64
2015-10-29 10:53:09.364 tcpdump DEBUG 10:53:09.349218 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 98, length 64
2015-10-29 10:53:09.581 tcpdump DEBUG 10:53:09.573341 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 98, length 64
2015-10-29 10:53:09.586 tcpdump DEBUG 10:53:09.573825 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 98, length 64
2015-10-29 10:53:09.856 tcpdump DEBUG 10:53:09.849720 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 99, length 64
2015-10-29 10:53:09.865 tcpdump DEBUG 10:53:09.850254 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 99, length 64
2015-10-29 10:53:10.082 tcpdump DEBUG 10:53:10.074293 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 99, length 64
2015-10-29 10:53:10.087 tcpdump DEBUG 10:53:10.074654 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 99, length 64
2015-10-29 10:53:10.356 tcpdump DEBUG 10:53:10.351335 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 100, length 64
2015-10-29 10:53:10.365 tcpdump DEBUG 10:53:10.351673 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 100, length 64
2015-10-29 10:53:10.580 tcpdump DEBUG 10:53:10.575556 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 100, length 64
2015-10-29 10:53:10.585 tcpdump DEBUG 10:53:10.575919 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 100, length 64
2015-10-29 10:53:10.871 tcpdump DEBUG 10:53:10.852382 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 101, length 64
2015-10-29 10:53:10.878 tcpdump DEBUG 10:53:10.852869 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 101, length 64
2015-10-29 10:53:11.083 tcpdump DEBUG 10:53:11.076329 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 101, length 64
2015-10-29 10:53:11.091 tcpdump DEBUG 10:53:11.077597 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 101, length 64
2015-10-29 10:53:11.365 tcpdump DEBUG 10:53:11.353545 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 102, length 64
2015-10-29 10:53:11.371 tcpdump DEBUG 10:53:11.354153 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 102, length 64
2015-10-29 10:53:11.582 tcpdump DEBUG 10:53:11.577222 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 102, length 64
2015-10-29 10:53:11.588 tcpdump DEBUG 10:53:11.579335 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 102, length 64
2015-10-29 10:53:11.862 tcpdump DEBUG 10:53:11.855047 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 103, length 64
2015-10-29 10:53:11.869 tcpdump DEBUG 10:53:11.855380 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 103, length 64
2015-10-29 10:53:12.084 tcpdump DEBUG 10:53:12.078275 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 103, length 64
2015-10-29 10:53:12.089 tcpdump DEBUG 10:53:12.078588 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 103, length 64
2015-10-29 10:53:12.365 tcpdump DEBUG 10:53:12.358270 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 104, length 64
2015-10-29 10:53:12.375 tcpdump DEBUG 10:53:12.359037 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 104, length 64
2015-10-29 10:53:12.586 tcpdump DEBUG 10:53:12.579319 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 104, length 64
2015-10-29 10:53:12.681 tcpdump DEBUG tcpdump: pcap_loop: The interface went down
2015-10-29 10:53:12.685 tcpdump DEBUG 359 packets captured
2015-10-29 10:53:12.688 tcpdump DEBUG 359 packets received by filter
2015-10-29 10:53:12.692 tcpdump DEBUG 0 packets dropped by kernel
2015-10-29 10:54:22.196 tcpdump DEBUG listening on tap2e6d0f35-cb, link-type EN10MB (Ethernet), capture size 65535 bytes
2015-10-29 10:54:22.329 tcpdump DEBUG 10:54:22.311425 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: :: > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:22.558 tcpdump DEBUG 10:54:22.547926 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::2421:57ff:fe1e:28f6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:22.580 tcpdump DEBUG 10:54:22.548074 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:22.651 tcpdump DEBUG 10:54:22.646810 fe:16:3e:50:a3:46 > 33:33:ff:50:a3:46, ethertype IPv6 (0x86dd), length 78: :: > ff02::1:ff50:a346: ICMP6, neighbor solicitation, who has fe80::fc16:3eff:fe50:a346, length 24
2015-10-29 10:54:23.360 tcpdump DEBUG 10:54:23.354810 4e:2d:70:74:20:e6 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::2421:57ff:fe1e:28f6 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:23.660 tcpdump DEBUG 10:54:23.649852 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::fc16:3eff:fe50:a346 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:23.666 tcpdump DEBUG 10:54:23.649917 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:24.201 tcpdump DEBUG 10:54:24.196800 fe:16:3e:50:a3:46 > 33:33:00:00:00:16, ethertype IPv6 (0x86dd), length 90: fe80::fc16:3eff:fe50:a346 > ff02::16: HBH ICMP6, multicast listener report v2, 1 group record(s), length 28
2015-10-29 10:54:25.684 tcpdump DEBUG 10:54:25.670966 6e:a1:8f:27:ea:c7 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::6ca1:8fff:fe27:eac7 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:26.559 tcpdump DEBUG 10:54:26.550937 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:27.636 tcpdump DEBUG 10:54:27.632047 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:27.658 tcpdump DEBUG 10:54:27.654789 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:27.787 tcpdump DEBUG 10:54:27.783353 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:28.037 tcpdump DEBUG 10:54:28.033259 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:28.387 tcpdump DEBUG 10:54:28.383211 fa:16:3e:50:a3:46 > Broadcast, ethertype Reverse ARP (0x8035), length 60: Reverse Request who-is fa:16:3e:50:a3:46 tell fa:16:3e:50:a3:46, length 46
2015-10-29 10:54:30.564 tcpdump DEBUG 10:54:30.558798 4e:2d:70:74:20:e6 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::2421:57ff:fe1e:28f6 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:31.666 tcpdump DEBUG 10:54:31.662770 fe:16:3e:50:a3:46 > 33:33:00:00:00:02, ethertype IPv6 (0x86dd), length 70: fe80::fc16:3eff:fe50:a346 > ff02::2: ICMP6, router solicitation, length 16
2015-10-29 10:54:33.740 tcpdump DEBUG 10:54:33.734641 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 266, length 64
2015-10-29 10:54:33.745 tcpdump DEBUG 10:54:33.735372 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 266, length 64
2015-10-29 10:54:33.865 tcpdump DEBUG 10:54:33.860882 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 266, length 64
2015-10-29 10:54:33.870 tcpdump DEBUG 10:54:33.861187 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 266, length 64
2015-10-29 10:54:34.242 tcpdump DEBUG 10:54:34.235677 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 267, length 64
2015-10-29 10:54:34.246 tcpdump DEBUG 10:54:34.235967 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 267, length 64
2015-10-29 10:54:34.367 tcpdump DEBUG 10:54:34.361924 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 267, length 64
2015-10-29 10:54:34.372 tcpdump DEBUG 10:54:34.362278 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 267, length 64
2015-10-29 10:54:34.741 tcpdump DEBUG 10:54:34.735757 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 268, length 64
2015-10-29 10:54:34.747 tcpdump DEBUG 10:54:34.736148 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 268, length 64
2015-10-29 10:54:34.868 tcpdump DEBUG 10:54:34.863761 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 268, length 64
2015-10-29 10:54:34.872 tcpdump DEBUG 10:54:34.864038 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 268, length 64
2015-10-29 10:54:35.247 tcpdump DEBUG 10:54:35.242616 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 269, length 64
2015-10-29 10:54:35.252 tcpdump DEBUG 10:54:35.242911 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 269, length 64
2015-10-29 10:54:35.369 tcpdump DEBUG 10:54:35.364412 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 269, length 64
2015-10-29 10:54:35.373 tcpdump DEBUG 10:54:35.364682 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 269, length 64
2015-10-29 10:54:35.751 tcpdump DEBUG 10:54:35.743856 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 270, length 64
2015-10-29 10:54:35.755 tcpdump DEBUG 10:54:35.744226 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 270, length 64
2015-10-29 10:54:35.870 tcpdump DEBUG 10:54:35.865866 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 270, length 64
2015-10-29 10:54:35.874 tcpdump DEBUG 10:54:35.866155 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 270, length 64
2015-10-29 10:54:36.252 tcpdump DEBUG 10:54:36.245056 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 271, length 64
2015-10-29 10:54:36.260 tcpdump DEBUG 10:54:36.245451 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 271, length 64
2015-10-29 10:54:36.375 tcpdump DEBUG 10:54:36.366899 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 271, length 64
2015-10-29 10:54:36.381 tcpdump DEBUG 10:54:36.367269 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 271, length 64
2015-10-29 10:54:36.762 tcpdump DEBUG 10:54:36.745971 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 272, length 64
2015-10-29 10:54:36.767 tcpdump DEBUG 10:54:36.746355 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 272, length 64
2015-10-29 10:54:36.874 tcpdump DEBUG 10:54:36.868836 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 272, length 64
2015-10-29 10:54:36.879 tcpdump DEBUG 10:54:36.869126 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 272, length 64
2015-10-29 10:54:37.252 tcpdump DEBUG 10:54:37.246759 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 273, length 64
2015-10-29 10:54:37.256 tcpdump DEBUG 10:54:37.247138 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 273, length 64
2015-10-29 10:54:37.375 tcpdump DEBUG 10:54:37.369855 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 273, length 64
2015-10-29 10:54:37.380 tcpdump DEBUG 10:54:37.370221 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 273, length 64
2015-10-29 10:54:37.755 tcpdump DEBUG 10:54:37.748882 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 274, length 64
2015-10-29 10:54:37.760 tcpdump DEBUG 10:54:37.750744 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 274, length 64
2015-10-29 10:54:37.876 tcpdump DEBUG 10:54:37.870125 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 274, length 64
2015-10-29 10:54:37.881 tcpdump DEBUG 10:54:37.870483 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 274, length 64
2015-10-29 10:54:38.254 tcpdump DEBUG 10:54:38.249746 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 275, length 64
2015-10-29 10:54:38.259 tcpdump DEBUG 10:54:38.250033 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 275, length 64
2015-10-29 10:54:38.379 tcpdump DEBUG 10:54:38.374072 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 275, length 64
2015-10-29 10:54:38.383 tcpdump DEBUG 10:54:38.374342 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 275, length 64
2015-10-29 10:54:38.756 tcpdump DEBUG 10:54:38.751173 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 276, length 64
2015-10-29 10:54:38.761 tcpdump DEBUG 10:54:38.751453 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 276, length 64
2015-10-29 10:54:38.882 tcpdump DEBUG 10:54:38.876788 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 276, length 64
2015-10-29 10:54:38.888 tcpdump DEBUG 10:54:38.877130 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 276, length 64
2015-10-29 10:54:39.258 tcpdump DEBUG 10:54:39.252318 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 277, length 64
2015-10-29 10:54:39.263 tcpdump DEBUG 10:54:39.252623 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 277, length 64
2015-10-29 10:54:39.382 tcpdump DEBUG 10:54:39.377426 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 277, length 64
2015-10-29 10:54:39.388 tcpdump DEBUG 10:54:39.377737 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 277, length 64
2015-10-29 10:54:39.760 tcpdump DEBUG 10:54:39.752815 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 278, length 64
2015-10-29 10:54:39.766 tcpdump DEBUG 10:54:39.753192 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 278, length 64
2015-10-29 10:54:39.886 tcpdump DEBUG 10:54:39.879683 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 278, length 64
2015-10-29 10:54:39.891 tcpdump DEBUG 10:54:39.880057 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 278, length 64
2015-10-29 10:54:40.259 tcpdump DEBUG 10:54:40.253873 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 279, length 64
2015-10-29 10:54:40.265 tcpdump DEBUG 10:54:40.254163 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 279, length 64
2015-10-29 10:54:40.385 tcpdump DEBUG 10:54:40.379422 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 279, length 64
2015-10-29 10:54:40.390 tcpdump DEBUG 10:54:40.379859 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 279, length 64
2015-10-29 10:54:40.761 tcpdump DEBUG 10:54:40.755235 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 280, length 64
2015-10-29 10:54:40.767 tcpdump DEBUG 10:54:40.756936 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 280, length 64
2015-10-29 10:54:40.889 tcpdump DEBUG 10:54:40.883704 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 280, length 64
2015-10-29 10:54:40.895 tcpdump DEBUG 10:54:40.884072 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 280, length 64
2015-10-29 10:54:41.264 tcpdump DEBUG 10:54:41.255893 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 281, length 64
2015-10-29 10:54:41.269 tcpdump DEBUG 10:54:41.256224 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 281, length 64
2015-10-29 10:54:41.390 tcpdump DEBUG 10:54:41.385742 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 281, length 64
2015-10-29 10:54:41.394 tcpdump DEBUG 10:54:41.386041 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 281, length 64
2015-10-29 10:54:41.761 tcpdump DEBUG 10:54:41.757131 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 282, length 64
2015-10-29 10:54:41.766 tcpdump DEBUG 10:54:41.757429 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 282, length 64
2015-10-29 10:54:41.890 tcpdump DEBUG 10:54:41.886370 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 282, length 64
2015-10-29 10:54:41.894 tcpdump DEBUG 10:54:41.886662 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 282, length 64
2015-10-29 10:54:42.263 tcpdump DEBUG 10:54:42.258496 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 283, length 64
2015-10-29 10:54:42.270 tcpdump DEBUG 10:54:42.258870 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 283, length 64
2015-10-29 10:54:42.394 tcpdump DEBUG 10:54:42.387287 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 283, length 64
2015-10-29 10:54:42.399 tcpdump DEBUG 10:54:42.387588 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 283, length 64
2015-10-29 10:54:42.766 tcpdump DEBUG 10:54:42.759065 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 284, length 64
2015-10-29 10:54:42.771 tcpdump DEBUG 10:54:42.759362 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 284, length 64
2015-10-29 10:54:42.892 tcpdump DEBUG 10:54:42.888023 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 284, length 64
2015-10-29 10:54:42.896 tcpdump DEBUG 10:54:42.888334 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 284, length 64
2015-10-29 10:54:43.267 tcpdump DEBUG 10:54:43.260534 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 285, length 64
2015-10-29 10:54:43.273 tcpdump DEBUG 10:54:43.260942 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 285, length 64
2015-10-29 10:54:43.393 tcpdump DEBUG 10:54:43.388664 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 285, length 64
2015-10-29 10:54:43.397 tcpdump DEBUG 10:54:43.389016 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 285, length 64
2015-10-29 10:54:43.766 tcpdump DEBUG 10:54:43.761375 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 286, length 64
2015-10-29 10:54:43.772 tcpdump DEBUG 10:54:43.761680 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 286, length 64
2015-10-29 10:54:43.894 tcpdump DEBUG 10:54:43.889363 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 286, length 64
2015-10-29 10:54:43.898 tcpdump DEBUG 10:54:43.889668 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 286, length 64
2015-10-29 10:54:44.269 tcpdump DEBUG 10:54:44.262279 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 287, length 64
2015-10-29 10:54:44.274 tcpdump DEBUG 10:54:44.262794 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 287, length 64
2015-10-29 10:54:44.394 tcpdump DEBUG 10:54:44.390067 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 287, length 64
2015-10-29 10:54:44.399 tcpdump DEBUG 10:54:44.390418 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 287, length 64
2015-10-29 10:54:44.769 tcpdump DEBUG 10:54:44.763256 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 288, length 64
2015-10-29 10:54:44.773 tcpdump DEBUG 10:54:44.763527 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 288, length 64
2015-10-29 10:54:44.896 tcpdump DEBUG 10:54:44.890643 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 288, length 64
2015-10-29 10:54:44.902 tcpdump DEBUG 10:54:44.891062 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 288, length 64
2015-10-29 10:54:45.272 tcpdump DEBUG 10:54:45.264928 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 289, length 64
2015-10-29 10:54:45.276 tcpdump DEBUG 10:54:45.265195 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 289, length 64
2015-10-29 10:54:45.396 tcpdump DEBUG 10:54:45.391210 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 289, length 64
2015-10-29 10:54:45.400 tcpdump DEBUG 10:54:45.391482 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 289, length 64
2015-10-29 10:54:45.772 tcpdump DEBUG 10:54:45.766092 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 290, length 64
2015-10-29 10:54:45.776 tcpdump DEBUG 10:54:45.766376 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 290, length 64
2015-10-29 10:54:45.896 tcpdump DEBUG 10:54:45.891857 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 290, length 64
2015-10-29 10:54:45.900 tcpdump DEBUG 10:54:45.892134 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 290, length 64
2015-10-29 10:54:46.272 tcpdump DEBUG 10:54:46.267213 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 291, length 64
2015-10-29 10:54:46.278 tcpdump DEBUG 10:54:46.267579 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 291, length 64
2015-10-29 10:54:46.397 tcpdump DEBUG 10:54:46.392501 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 291, length 64
2015-10-29 10:54:46.401 tcpdump DEBUG 10:54:46.392818 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 291, length 64
2015-10-29 10:54:46.774 tcpdump DEBUG 10:54:46.768682 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 292, length 64
2015-10-29 10:54:46.778 tcpdump DEBUG 10:54:46.768944 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 292, length 64
2015-10-29 10:54:46.899 tcpdump DEBUG 10:54:46.893688 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 292, length 64
2015-10-29 10:54:46.903 tcpdump DEBUG 10:54:46.893960 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 292, length 64
2015-10-29 10:54:47.275 tcpdump DEBUG 10:54:47.270145 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 293, length 64
2015-10-29 10:54:47.279 tcpdump DEBUG 10:54:47.270411 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 293, length 64
2015-10-29 10:54:47.399 tcpdump DEBUG 10:54:47.394384 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 293, length 64
2015-10-29 10:54:47.404 tcpdump DEBUG 10:54:47.394739 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 293, length 64
2015-10-29 10:54:47.777 tcpdump DEBUG 10:54:47.771416 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 294, length 64
2015-10-29 10:54:47.781 tcpdump DEBUG 10:54:47.771698 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 294, length 64
2015-10-29 10:54:47.900 tcpdump DEBUG 10:54:47.895066 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 294, length 64
2015-10-29 10:54:47.904 tcpdump DEBUG 10:54:47.895355 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 294, length 64
2015-10-29 10:54:48.277 tcpdump DEBUG 10:54:48.272323 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 295, length 64
2015-10-29 10:54:48.281 tcpdump DEBUG 10:54:48.272603 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 295, length 64
2015-10-29 10:54:48.402 tcpdump DEBUG 10:54:48.395718 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 295, length 64
2015-10-29 10:54:48.408 tcpdump DEBUG 10:54:48.396100 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 295, length 64
2015-10-29 10:54:48.778 tcpdump DEBUG 10:54:48.772871 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 296, length 64
2015-10-29 10:54:48.783 tcpdump DEBUG 10:54:48.773154 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 296, length 64
2015-10-29 10:54:48.904 tcpdump DEBUG 10:54:48.896652 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 296, length 64
2015-10-29 10:54:48.908 tcpdump DEBUG 10:54:48.896983 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 296, length 64
2015-10-29 10:54:49.281 tcpdump DEBUG 10:54:49.274238 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 297, length 64
2015-10-29 10:54:49.285 tcpdump DEBUG 10:54:49.274503 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 297, length 64
2015-10-29 10:54:49.402 tcpdump DEBUG 10:54:49.397468 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 297, length 64
2015-10-29 10:54:49.406 tcpdump DEBUG 10:54:49.397778 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 297, length 64
2015-10-29 10:54:49.781 tcpdump DEBUG 10:54:49.775489 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 298, length 64
2015-10-29 10:54:49.785 tcpdump DEBUG 10:54:49.775748 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 298, length 64
2015-10-29 10:54:49.903 tcpdump DEBUG 10:54:49.898524 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 298, length 64
2015-10-29 10:54:49.907 tcpdump DEBUG 10:54:49.898821 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 298, length 64
2015-10-29 10:54:50.277 tcpdump DEBUG 10:54:50.269655 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:54:50.283 tcpdump DEBUG 10:54:50.271534 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:54:50.289 tcpdump DEBUG 10:54:50.277346 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 299, length 64
2015-10-29 10:54:50.294 tcpdump DEBUG 10:54:50.280276 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 299, length 64
2015-10-29 10:54:50.405 tcpdump DEBUG 10:54:50.399458 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 299, length 64
2015-10-29 10:54:50.408 tcpdump DEBUG 10:54:50.399741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 299, length 64
2015-10-29 10:54:50.785 tcpdump DEBUG 10:54:50.777988 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 300, length 64
2015-10-29 10:54:50.789 tcpdump DEBUG 10:54:50.778266 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 300, length 64
2015-10-29 10:54:50.906 tcpdump DEBUG 10:54:50.900114 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 300, length 64
2015-10-29 10:54:50.910 tcpdump DEBUG 10:54:50.900387 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 300, length 64
2015-10-29 10:54:51.288 tcpdump DEBUG 10:54:51.282547 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 301, length 64
2015-10-29 10:54:51.293 tcpdump DEBUG 10:54:51.282841 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 301, length 64
2015-10-29 10:54:51.405 tcpdump DEBUG 10:54:51.400409 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 301, length 64
2015-10-29 10:54:51.409 tcpdump DEBUG 10:54:51.400693 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 301, length 64
2015-10-29 10:54:51.789 tcpdump DEBUG 10:54:51.783969 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 302, length 64
2015-10-29 10:54:51.793 tcpdump DEBUG 10:54:51.784238 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 302, length 64
2015-10-29 10:54:51.907 tcpdump DEBUG 10:54:51.901398 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 302, length 64
2015-10-29 10:54:51.910 tcpdump DEBUG 10:54:51.901681 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 302, length 64
2015-10-29 10:54:52.294 tcpdump DEBUG 10:54:52.285224 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 303, length 64
2015-10-29 10:54:52.299 tcpdump DEBUG 10:54:52.285484 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 303, length 64
2015-10-29 10:54:52.407 tcpdump DEBUG 10:54:52.402060 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 303, length 64
2015-10-29 10:54:52.411 tcpdump DEBUG 10:54:52.402346 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 303, length 64
2015-10-29 10:54:52.791 tcpdump DEBUG 10:54:52.785953 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 304, length 64
2015-10-29 10:54:52.795 tcpdump DEBUG 10:54:52.786226 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 304, length 64
2015-10-29 10:54:52.908 tcpdump DEBUG 10:54:52.903071 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 304, length 64
2015-10-29 10:54:52.913 tcpdump DEBUG 10:54:52.903357 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 304, length 64
2015-10-29 10:54:53.297 tcpdump DEBUG 10:54:53.292277 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 305, length 64
2015-10-29 10:54:53.301 tcpdump DEBUG 10:54:53.292535 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 305, length 64
2015-10-29 10:54:53.408 tcpdump DEBUG 10:54:53.403345 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 305, length 64
2015-10-29 10:54:53.413 tcpdump DEBUG 10:54:53.403639 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 305, length 64
2015-10-29 10:54:53.800 tcpdump DEBUG 10:54:53.793493 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 306, length 64
2015-10-29 10:54:53.804 tcpdump DEBUG 10:54:53.793809 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 306, length 64
2015-10-29 10:54:53.909 tcpdump DEBUG 10:54:53.904116 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 306, length 64
2015-10-29 10:54:53.913 tcpdump DEBUG 10:54:53.904383 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 306, length 64
2015-10-29 10:54:54.302 tcpdump DEBUG 10:54:54.294583 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 307, length 64
2015-10-29 10:54:54.307 tcpdump DEBUG 10:54:54.294904 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 307, length 64
2015-10-29 10:54:54.409 tcpdump DEBUG 10:54:54.404925 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 307, length 64
2015-10-29 10:54:54.413 tcpdump DEBUG 10:54:54.405206 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 307, length 64
2015-10-29 10:54:54.802 tcpdump DEBUG 10:54:54.795954 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 308, length 64
2015-10-29 10:54:54.807 tcpdump DEBUG 10:54:54.796243 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 308, length 64
2015-10-29 10:54:54.910 tcpdump DEBUG 10:54:54.905618 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 308, length 64
2015-10-29 10:54:54.913 tcpdump DEBUG 10:54:54.905920 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 308, length 64
2015-10-29 10:54:55.304 tcpdump DEBUG 10:54:55.299554 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 309, length 64
2015-10-29 10:54:55.309 tcpdump DEBUG 10:54:55.299844 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 309, length 64
2015-10-29 10:54:55.411 tcpdump DEBUG 10:54:55.406439 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 309, length 64
2015-10-29 10:54:55.416 tcpdump DEBUG 10:54:55.406741 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 309, length 64
2015-10-29 10:54:55.805 tcpdump DEBUG 10:54:55.800808 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 310, length 64
2015-10-29 10:54:55.809 tcpdump DEBUG 10:54:55.801099 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 310, length 64
2015-10-29 10:54:55.912 tcpdump DEBUG 10:54:55.907233 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 310, length 64
2015-10-29 10:54:55.917 tcpdump DEBUG 10:54:55.907507 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 310, length 64
2015-10-29 10:54:56.308 tcpdump DEBUG 10:54:56.301957 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 311, length 64
2015-10-29 10:54:56.313 tcpdump DEBUG 10:54:56.302332 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 311, length 64
2015-10-29 10:54:56.413 tcpdump DEBUG 10:54:56.408044 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 311, length 64
2015-10-29 10:54:56.417 tcpdump DEBUG 10:54:56.408339 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 311, length 64
2015-10-29 10:54:56.810 tcpdump DEBUG 10:54:56.803149 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 312, length 64
2015-10-29 10:54:56.814 tcpdump DEBUG 10:54:56.803473 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 312, length 64
2015-10-29 10:54:56.914 tcpdump DEBUG 10:54:56.908914 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 312, length 64
2015-10-29 10:54:56.918 tcpdump DEBUG 10:54:56.909210 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 312, length 64
2015-10-29 10:54:57.309 tcpdump DEBUG 10:54:57.304367 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 313, length 64
2015-10-29 10:54:57.314 tcpdump DEBUG 10:54:57.304632 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 313, length 64
2015-10-29 10:54:57.415 tcpdump DEBUG 10:54:57.409595 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 313, length 64
2015-10-29 10:54:57.419 tcpdump DEBUG 10:54:57.409908 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 313, length 64
2015-10-29 10:54:57.811 tcpdump DEBUG 10:54:57.805657 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 314, length 64
2015-10-29 10:54:57.816 tcpdump DEBUG 10:54:57.805975 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 314, length 64
2015-10-29 10:54:57.915 tcpdump DEBUG 10:54:57.910317 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 314, length 64
2015-10-29 10:54:57.919 tcpdump DEBUG 10:54:57.910582 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 314, length 64
2015-10-29 10:54:58.314 tcpdump DEBUG 10:54:58.306927 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 315, length 64
2015-10-29 10:54:58.320 tcpdump DEBUG 10:54:58.307303 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 315, length 64
2015-10-29 10:54:58.416 tcpdump DEBUG 10:54:58.411029 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 315, length 64
2015-10-29 10:54:58.420 tcpdump DEBUG 10:54:58.411575 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 315, length 64
2015-10-29 10:54:58.815 tcpdump DEBUG 10:54:58.808078 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 316, length 64
2015-10-29 10:54:58.819 tcpdump DEBUG 10:54:58.808398 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 316, length 64
2015-10-29 10:54:58.916 tcpdump DEBUG 10:54:58.912061 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 316, length 64
2015-10-29 10:54:58.921 tcpdump DEBUG 10:54:58.912417 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 316, length 64
2015-10-29 10:54:59.314 tcpdump DEBUG 10:54:59.309254 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 317, length 64
2015-10-29 10:54:59.318 tcpdump DEBUG 10:54:59.309516 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 317, length 64
2015-10-29 10:54:59.418 tcpdump DEBUG 10:54:59.413027 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 317, length 64
2015-10-29 10:54:59.422 tcpdump DEBUG 10:54:59.413346 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 317, length 64
2015-10-29 10:54:59.815 tcpdump DEBUG 10:54:59.810611 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 318, length 64
2015-10-29 10:54:59.819 tcpdump DEBUG 10:54:59.810955 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 318, length 64
2015-10-29 10:54:59.918 tcpdump DEBUG 10:54:59.913912 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 318, length 64
2015-10-29 10:54:59.922 tcpdump DEBUG 10:54:59.914178 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 318, length 64
2015-10-29 10:55:00.318 tcpdump DEBUG 10:55:00.311823 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 319, length 64
2015-10-29 10:55:00.323 tcpdump DEBUG 10:55:00.312213 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 319, length 64
2015-10-29 10:55:00.419 tcpdump DEBUG 10:55:00.414566 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 319, length 64
2015-10-29 10:55:00.423 tcpdump DEBUG 10:55:00.414978 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 319, length 64
2015-10-29 10:55:00.819 tcpdump DEBUG 10:55:00.813029 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 320, length 64
2015-10-29 10:55:00.823 tcpdump DEBUG 10:55:00.813318 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 320, length 64
2015-10-29 10:55:00.918 tcpdump DEBUG 10:55:00.911679 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.6 tell 192.168.200.1, length 28
2015-10-29 10:55:00.922 tcpdump DEBUG 10:55:00.912574 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Reply 192.168.200.6 is-at fa:16:3e:50:a3:46, length 28
2015-10-29 10:55:00.927 tcpdump DEBUG 10:55:00.915142 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 320, length 64
2015-10-29 10:55:00.931 tcpdump DEBUG 10:55:00.916340 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 320, length 64
2015-10-29 10:55:01.321 tcpdump DEBUG 10:55:01.314369 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 321, length 64
2015-10-29 10:55:01.325 tcpdump DEBUG 10:55:01.314676 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 321, length 64
2015-10-29 10:55:01.421 tcpdump DEBUG 10:55:01.415801 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 321, length 64
2015-10-29 10:55:01.425 tcpdump DEBUG 10:55:01.417981 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 321, length 64
2015-10-29 10:55:01.821 tcpdump DEBUG 10:55:01.815555 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 322, length 64
2015-10-29 10:55:01.825 tcpdump DEBUG 10:55:01.815934 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 322, length 64
2015-10-29 10:55:01.921 tcpdump DEBUG 10:55:01.916165 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 322, length 64
2015-10-29 10:55:01.927 tcpdump DEBUG 10:55:01.916477 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 322, length 64
2015-10-29 10:55:02.326 tcpdump DEBUG 10:55:02.316773 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 323, length 64
2015-10-29 10:55:02.331 tcpdump DEBUG 10:55:02.317145 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 323, length 64
2015-10-29 10:55:02.421 tcpdump DEBUG 10:55:02.417079 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 323, length 64
2015-10-29 10:55:02.425 tcpdump DEBUG 10:55:02.417431 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 323, length 64
2015-10-29 10:55:02.825 tcpdump DEBUG 10:55:02.818058 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 324, length 64
2015-10-29 10:55:02.830 tcpdump DEBUG 10:55:02.818470 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 324, length 64
2015-10-29 10:55:02.923 tcpdump DEBUG 10:55:02.918045 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 324, length 64
2015-10-29 10:55:02.928 tcpdump DEBUG 10:55:02.918336 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 324, length 64
2015-10-29 10:55:03.324 tcpdump DEBUG 10:55:03.319388 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 325, length 64
2015-10-29 10:55:03.328 tcpdump DEBUG 10:55:03.319656 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 325, length 64
2015-10-29 10:55:03.423 tcpdump DEBUG 10:55:03.418950 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 325, length 64
2015-10-29 10:55:03.427 tcpdump DEBUG 10:55:03.419226 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 325, length 64
2015-10-29 10:55:03.826 tcpdump DEBUG 10:55:03.820299 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 326, length 64
2015-10-29 10:55:03.831 tcpdump DEBUG 10:55:03.820590 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 326, length 64
2015-10-29 10:55:03.925 tcpdump DEBUG 10:55:03.920331 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 326, length 64
2015-10-29 10:55:03.930 tcpdump DEBUG 10:55:03.920602 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 326, length 64
2015-10-29 10:55:04.326 tcpdump DEBUG 10:55:04.321307 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 327, length 64
2015-10-29 10:55:04.331 tcpdump DEBUG 10:55:04.321650 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 327, length 64
2015-10-29 10:55:04.426 tcpdump DEBUG 10:55:04.421842 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 327, length 64
2015-10-29 10:55:04.430 tcpdump DEBUG 10:55:04.422195 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 327, length 64
2015-10-29 10:55:04.827 tcpdump DEBUG 10:55:04.822396 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 328, length 64
2015-10-29 10:55:04.836 tcpdump DEBUG 10:55:04.823052 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 328, length 64
2015-10-29 10:55:04.931 tcpdump DEBUG 10:55:04.925777 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 328, length 64
2015-10-29 10:55:04.935 tcpdump DEBUG 10:55:04.926111 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 328, length 64
2015-10-29 10:55:05.328 tcpdump DEBUG 10:55:05.322951 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 329, length 64
2015-10-29 10:55:05.333 tcpdump DEBUG 10:55:05.323263 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 329, length 64
2015-10-29 10:55:05.431 tcpdump DEBUG 10:55:05.426233 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 329, length 64
2015-10-29 10:55:05.435 tcpdump DEBUG 10:55:05.426536 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 329, length 64
2015-10-29 10:55:05.830 tcpdump DEBUG 10:55:05.824448 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 330, length 64
2015-10-29 10:55:05.834 tcpdump DEBUG 10:55:05.824801 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 330, length 64
2015-10-29 10:55:05.932 tcpdump DEBUG 10:55:05.927359 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 330, length 64
2015-10-29 10:55:05.936 tcpdump DEBUG 10:55:05.927628 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 330, length 64
2015-10-29 10:55:06.331 tcpdump DEBUG 10:55:06.325297 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 331, length 64
2015-10-29 10:55:06.336 tcpdump DEBUG 10:55:06.325638 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 331, length 64
2015-10-29 10:55:06.434 tcpdump DEBUG 10:55:06.429242 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 331, length 64
2015-10-29 10:55:06.438 tcpdump DEBUG 10:55:06.429591 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 331, length 64
2015-10-29 10:55:06.839 tcpdump DEBUG 10:55:06.826275 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 332, length 64
2015-10-29 10:55:06.843 tcpdump DEBUG 10:55:06.826556 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 332, length 64
2015-10-29 10:55:06.939 tcpdump DEBUG 10:55:06.933249 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 332, length 64
2015-10-29 10:55:06.943 tcpdump DEBUG 10:55:06.933576 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 332, length 64
2015-10-29 10:55:07.333 tcpdump DEBUG 10:55:07.327459 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 333, length 64
2015-10-29 10:55:07.337 tcpdump DEBUG 10:55:07.327797 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 333, length 64
2015-10-29 10:55:07.444 tcpdump DEBUG 10:55:07.439241 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 333, length 64
2015-10-29 10:55:07.450 tcpdump DEBUG 10:55:07.439544 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 333, length 64
2015-10-29 10:55:07.835 tcpdump DEBUG 10:55:07.828963 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 334, length 64
2015-10-29 10:55:07.840 tcpdump DEBUG 10:55:07.829272 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 334, length 64
2015-10-29 10:55:07.947 tcpdump DEBUG 10:55:07.942548 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 334, length 64
2015-10-29 10:55:07.951 tcpdump DEBUG 10:55:07.942871 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 334, length 64
2015-10-29 10:55:08.340 tcpdump DEBUG 10:55:08.330255 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 335, length 64
2015-10-29 10:55:08.345 tcpdump DEBUG 10:55:08.330562 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 335, length 64
2015-10-29 10:55:08.448 tcpdump DEBUG 10:55:08.443207 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 335, length 64
2015-10-29 10:55:08.452 tcpdump DEBUG 10:55:08.443537 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 335, length 64
2015-10-29 10:55:08.838 tcpdump DEBUG 10:55:08.830899 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 336, length 64
2015-10-29 10:55:08.842 tcpdump DEBUG 10:55:08.831207 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 336, length 64
2015-10-29 10:55:08.949 tcpdump DEBUG 10:55:08.944235 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 336, length 64
2015-10-29 10:55:08.954 tcpdump DEBUG 10:55:08.944765 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 336, length 64
2015-10-29 10:55:09.336 tcpdump DEBUG 10:55:09.332004 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 337, length 64
2015-10-29 10:55:09.340 tcpdump DEBUG 10:55:09.332316 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 337, length 64
2015-10-29 10:55:09.450 tcpdump DEBUG 10:55:09.444905 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 337, length 64
2015-10-29 10:55:09.454 tcpdump DEBUG 10:55:09.445166 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 337, length 64
2015-10-29 10:55:09.839 tcpdump DEBUG 10:55:09.833240 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 338, length 64
2015-10-29 10:55:09.843 tcpdump DEBUG 10:55:09.833552 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 338, length 64
2015-10-29 10:55:09.953 tcpdump DEBUG 10:55:09.947303 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 338, length 64
2015-10-29 10:55:09.958 tcpdump DEBUG 10:55:09.947674 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 338, length 64
2015-10-29 10:55:10.341 tcpdump DEBUG 10:55:10.334506 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 339, length 64
2015-10-29 10:55:10.347 tcpdump DEBUG 10:55:10.334993 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 339, length 64
2015-10-29 10:55:10.454 tcpdump DEBUG 10:55:10.448312 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 339, length 64
2015-10-29 10:55:10.458 tcpdump DEBUG 10:55:10.448686 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 339, length 64
2015-10-29 10:55:10.841 tcpdump DEBUG 10:55:10.835371 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 340, length 64
2015-10-29 10:55:10.846 tcpdump DEBUG 10:55:10.835677 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 340, length 64
2015-10-29 10:55:10.954 tcpdump DEBUG 10:55:10.949272 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 340, length 64
2015-10-29 10:55:10.958 tcpdump DEBUG 10:55:10.949581 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 340, length 64
2015-10-29 10:55:11.344 tcpdump DEBUG 10:55:11.336608 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 341, length 64
2015-10-29 10:55:11.348 tcpdump DEBUG 10:55:11.336934 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 341, length 64
2015-10-29 10:55:11.454 tcpdump DEBUG 10:55:11.450066 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 341, length 64
2015-10-29 10:55:11.458 tcpdump DEBUG 10:55:11.450331 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 341, length 64
2015-10-29 10:55:11.843 tcpdump DEBUG 10:55:11.838008 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 342, length 64
2015-10-29 10:55:11.847 tcpdump DEBUG 10:55:11.838319 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 342, length 64
2015-10-29 10:55:11.955 tcpdump DEBUG 10:55:11.950568 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 342, length 64
2015-10-29 10:55:11.959 tcpdump DEBUG 10:55:11.950906 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 342, length 64
2015-10-29 10:55:12.347 tcpdump DEBUG 10:55:12.339245 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 343, length 64
2015-10-29 10:55:12.355 tcpdump DEBUG 10:55:12.339569 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 343, length 64
2015-10-29 10:55:12.456 tcpdump DEBUG 10:55:12.451364 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 343, length 64
2015-10-29 10:55:12.460 tcpdump DEBUG 10:55:12.451616 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 343, length 64
2015-10-29 10:55:12.845 tcpdump DEBUG 10:55:12.840610 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 344, length 64
2015-10-29 10:55:12.849 tcpdump DEBUG 10:55:12.840897 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 344, length 64
2015-10-29 10:55:12.956 tcpdump DEBUG 10:55:12.952027 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 344, length 64
2015-10-29 10:55:12.960 tcpdump DEBUG 10:55:12.952304 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 344, length 64
2015-10-29 10:55:13.346 tcpdump DEBUG 10:55:13.341669 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 345, length 64
2015-10-29 10:55:13.351 tcpdump DEBUG 10:55:13.341994 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 345, length 64
2015-10-29 10:55:13.458 tcpdump DEBUG 10:55:13.453447 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 345, length 64
2015-10-29 10:55:13.462 tcpdump DEBUG 10:55:13.453738 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 345, length 64
2015-10-29 10:55:13.849 tcpdump DEBUG 10:55:13.842960 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 346, length 64
2015-10-29 10:55:13.853 tcpdump DEBUG 10:55:13.843204 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 346, length 64
2015-10-29 10:55:13.959 tcpdump DEBUG 10:55:13.954082 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 346, length 64
2015-10-29 10:55:13.963 tcpdump DEBUG 10:55:13.954356 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 346, length 64
2015-10-29 10:55:14.350 tcpdump DEBUG 10:55:14.344227 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 347, length 64
2015-10-29 10:55:14.356 tcpdump DEBUG 10:55:14.344516 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 347, length 64
2015-10-29 10:55:14.459 tcpdump DEBUG 10:55:14.454856 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 347, length 64
2015-10-29 10:55:14.463 tcpdump DEBUG 10:55:14.455181 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 347, length 64
2015-10-29 10:55:14.850 tcpdump DEBUG 10:55:14.845131 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 348, length 64
2015-10-29 10:55:14.854 tcpdump DEBUG 10:55:14.845412 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 348, length 64
2015-10-29 10:55:14.961 tcpdump DEBUG 10:55:14.955668 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 348, length 64
2015-10-29 10:55:14.965 tcpdump DEBUG 10:55:14.955921 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 348, length 64
2015-10-29 10:55:15.353 tcpdump DEBUG 10:55:15.346321 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 349, length 64
2015-10-29 10:55:15.358 tcpdump DEBUG 10:55:15.346675 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 349, length 64
2015-10-29 10:55:15.462 tcpdump DEBUG 10:55:15.456327 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 349, length 64
2015-10-29 10:55:15.466 tcpdump DEBUG 10:55:15.456631 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 349, length 64
2015-10-29 10:55:15.854 tcpdump DEBUG 10:55:15.847741 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 350, length 64
2015-10-29 10:55:15.858 tcpdump DEBUG 10:55:15.848013 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 350, length 64
2015-10-29 10:55:15.964 tcpdump DEBUG 10:55:15.957136 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 350, length 64
2015-10-29 10:55:15.968 tcpdump DEBUG 10:55:15.957404 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 350, length 64
2015-10-29 10:55:16.355 tcpdump DEBUG 10:55:16.348983 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 351, length 64
2015-10-29 10:55:16.360 tcpdump DEBUG 10:55:16.349254 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 351, length 64
2015-10-29 10:55:16.464 tcpdump DEBUG 10:55:16.458633 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 351, length 64
2015-10-29 10:55:16.468 tcpdump DEBUG 10:55:16.458965 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 351, length 64
2015-10-29 10:55:16.856 tcpdump DEBUG 10:55:16.851262 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 352, length 64
2015-10-29 10:55:16.860 tcpdump DEBUG 10:55:16.851586 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 352, length 64
2015-10-29 10:55:16.963 tcpdump DEBUG 10:55:16.958425 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 352, length 64
2015-10-29 10:55:16.968 tcpdump DEBUG 10:55:16.958743 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 352, length 64
2015-10-29 10:55:17.360 tcpdump DEBUG 10:55:17.353976 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 353, length 64
2015-10-29 10:55:17.365 tcpdump DEBUG 10:55:17.354365 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 353, length 64
2015-10-29 10:55:17.465 tcpdump DEBUG 10:55:17.459284 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 353, length 64
2015-10-29 10:55:17.469 tcpdump DEBUG 10:55:17.459550 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 353, length 64
2015-10-29 10:55:17.861 tcpdump DEBUG 10:55:17.855101 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 354, length 64
2015-10-29 10:55:17.866 tcpdump DEBUG 10:55:17.855395 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 354, length 64
2015-10-29 10:55:17.964 tcpdump DEBUG 10:55:17.959523 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 354, length 64
2015-10-29 10:55:17.968 tcpdump DEBUG 10:55:17.959847 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 354, length 64
2015-10-29 10:55:18.371 tcpdump DEBUG 10:55:18.357468 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 355, length 64
2015-10-29 10:55:18.385 tcpdump DEBUG 10:55:18.358042 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 355, length 64
2015-10-29 10:55:18.473 tcpdump DEBUG 10:55:18.461306 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 355, length 64
2015-10-29 10:55:18.477 tcpdump DEBUG 10:55:18.461854 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 355, length 64
2015-10-29 10:55:18.862 tcpdump DEBUG 10:55:18.857670 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 356, length 64
2015-10-29 10:55:18.866 tcpdump DEBUG 10:55:18.857984 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 356, length 64
2015-10-29 10:55:18.965 tcpdump DEBUG 10:55:18.961338 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 356, length 64
2015-10-29 10:55:18.970 tcpdump DEBUG 10:55:18.961630 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 356, length 64
2015-10-29 10:55:19.364 tcpdump DEBUG 10:55:19.358652 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 357, length 64
2015-10-29 10:55:19.368 tcpdump DEBUG 10:55:19.359015 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 357, length 64
2015-10-29 10:55:19.467 tcpdump DEBUG 10:55:19.462289 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 357, length 64
2015-10-29 10:55:19.472 tcpdump DEBUG 10:55:19.462586 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 357, length 64
2015-10-29 10:55:19.864 tcpdump DEBUG 10:55:19.859261 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 358, length 64
2015-10-29 10:55:19.868 tcpdump DEBUG 10:55:19.859607 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 358, length 64
2015-10-29 10:55:19.961 tcpdump DEBUG 10:55:19.956303 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype ARP (0x0806), length 42: Request who-has 192.168.200.1 tell 192.168.200.6, length 28
2015-10-29 10:55:19.965 tcpdump DEBUG 10:55:19.958145 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype ARP (0x0806), length 42: Reply 192.168.200.1 is-at fa:16:3e:c5:24:11, length 28
2015-10-29 10:55:19.970 tcpdump DEBUG 10:55:19.964325 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 358, length 64
2015-10-29 10:55:19.974 tcpdump DEBUG 10:55:19.965663 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 358, length 64
2015-10-29 10:55:20.375 tcpdump DEBUG 10:55:20.360235 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 359, length 64
2015-10-29 10:55:20.384 tcpdump DEBUG 10:55:20.361547 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 359, length 64
2015-10-29 10:55:20.469 tcpdump DEBUG 10:55:20.464212 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 359, length 64
2015-10-29 10:55:20.474 tcpdump DEBUG 10:55:20.465073 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 359, length 64
2015-10-29 10:55:20.905 tcpdump DEBUG 10:55:20.899907 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 360, length 64
2015-10-29 10:55:20.909 tcpdump DEBUG 10:55:20.900358 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 360, length 64
2015-10-29 10:55:20.969 tcpdump DEBUG 10:55:20.965247 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 360, length 64
2015-10-29 10:55:20.973 tcpdump DEBUG 10:55:20.965574 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 360, length 64
2015-10-29 10:55:21.367 tcpdump DEBUG 10:55:21.362962 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 361, length 64
2015-10-29 10:55:21.374 tcpdump DEBUG 10:55:21.363310 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 361, length 64
2015-10-29 10:55:21.470 tcpdump DEBUG 10:55:21.466011 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 361, length 64
2015-10-29 10:55:21.474 tcpdump DEBUG 10:55:21.466352 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 361, length 64
2015-10-29 10:55:21.879 tcpdump DEBUG 10:55:21.865080 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 362, length 64
2015-10-29 10:55:21.886 tcpdump DEBUG 10:55:21.865393 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 362, length 64
2015-10-29 10:55:22.083 tcpdump DEBUG 10:55:22.007382 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 362, length 64
2015-10-29 10:55:22.087 tcpdump DEBUG 10:55:22.010008 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 362, length 64
2015-10-29 10:55:22.374 tcpdump DEBUG 10:55:22.365255 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.22 > 192.168.200.6: ICMP echo request, id 22194, seq 363, length 64
2015-10-29 10:55:22.379 tcpdump DEBUG 10:55:22.368065 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.22: ICMP echo reply, id 22194, seq 363, length 64
2015-10-29 10:55:22.472 tcpdump DEBUG 10:55:22.467223 fa:16:3e:c5:24:11 > fa:16:3e:50:a3:46, ethertype IPv4 (0x0800), length 98: 192.168.233.21 > 192.168.200.6: ICMP echo request, id 29942, seq 363, length 64
2015-10-29 10:55:22.477 tcpdump DEBUG 10:55:22.467677 fa:16:3e:50:a3:46 > fa:16:3e:c5:24:11, ethertype IPv4 (0x0800), length 98: 192.168.200.6 > 192.168.233.21: ICMP echo reply, id 29942, seq 363, length 64

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,4 @@
2015-10-29 10:53:12.582 21476 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Paused (Lifecycle Event)
2015-10-29 10:53:13.484 21476 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Stopped (Lifecycle Event)
2015-10-29 10:54:23.269 21476 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Started (Lifecycle Event)
2015-10-29 10:54:27.592 21476 INFO nova.compute.manager [-] [instance: a18a5824-4215-4e24-bcfc-cb9f89f6bcbd] VM Resumed (Lifecycle Event)

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,3 @@
#!/bin/sh
echo "$(date +%Y-%m-%d\ %H:%M:%S.%03N) $(hostname -s) DEBUG $*" \
>>/var/log/ansible-debug.log

View File

@ -0,0 +1,7 @@
#!/bin/sh
tcpdump -e -n -l -i br-int arp 2>&1 | \
while read line; do
echo "$(date +%Y-%m-%d\ %H:%M:%S.%03N) tcpdump DEBUG $line";
done

View File

@ -0,0 +1,16 @@
#!/bin/sh
fdb_show_loop() {
while true;
do
ovs-appctl fdb/show br-int
ovs-ofctl dump-flows br-tun table=20 | grep "priority=1"
sleep 1 # yield before retrying
done
}
fdb_show_loop | \
while read line; do
echo "$(date +%Y-%m-%d\ %H:%M:%S.%03N) ovs-fdb DEBUG $line";
done

View File

@ -0,0 +1,6 @@
#!/bin/sh
ping -i 0.5 $1 | \
while read pong; do
echo "$(date +%Y-%m-%d\ %H:%M:%S.%03N) pinger DEBUG $pong";
done

View File

@ -0,0 +1,30 @@
#!/bin/sh
interface=$1
skip2() {
# Yeah, I know tail --lines=+3 does exist, but that blocks
# the output until the input finishes....
read line
read line
while read line; do
echo $line
done
}
tcpdump_retry() {
# removing dirt of the input that drives tcpdump crazy...
interface=$1
echo "Starting tcpdump retrier on interface '$interface'"
while true;
do
tcpdump -i $interface -e -n -l 2>&1 | skip2
sleep 1 # yield before retrying
done
}
tcpdump_retry $interface| \
while read line; do
echo "$(date +%Y-%m-%d\ %H:%M:%S.%03N) tcpdump DEBUG $line";
done